/*
Theme Name: Bihar Bhumi Sudhaar
Theme URI: https://biharbhumisudhaar.com
Author: Bihar Bhumi Sudhaar Team
Author URI: https://biharbhumisudhaar.com
Description: A professional informational theme for Bihar land record awareness. Covers Jamabandi, Khata-Khesra, Naksha, Lagan, Dakhil Kharij and all Bihar Bhumi services. Not an official government website.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: biharbhumisudhaar
Tags: two-columns, right-sidebar, custom-header, custom-menu, featured-images, full-width-template, rtl-language-support, translation-ready
*/

/* =============================================
   CSS VARIABLES - Deep Green & Gold Theme
   ============================================= */
:root {
  --green-dark:    #0d3b2e;
  --green-mid:     #1a5c44;
  --green-light:   #2a7a5c;
  --green-pale:    #e8f5f0;
  --gold-primary:  #c9952a;
  --gold-light:    #e8b84b;
  --gold-pale:     #fdf6e3;
  --white:         #ffffff;
  --text-dark:     #1a1a1a;
  --text-body:     #333333;
  --text-muted:    #666666;
  --border:        #d4e8de;
  --shadow-sm:     0 2px 8px rgba(13,59,46,0.08);
  --shadow-md:     0 4px 20px rgba(13,59,46,0.12);
  --shadow-lg:     0 8px 40px rgba(13,59,46,0.18);
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --font-heading:  'Tiro Devanagari Hindi', 'Noto Serif', Georgia, serif;
  --font-body:     'Hind', 'Noto Sans Devanagari', Arial, sans-serif;
  --transition:    all 0.3s ease;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: #f4f8f6;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--green-mid); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-primary); }

img { max-width: 100%; height: auto; display: block; }

ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--green-dark);
  line-height: 1.35;
  font-weight: 700;
}

p { margin-bottom: 1rem; }

/* =============================================
   LAYOUT WRAPPER
   ============================================= */
.site-wrapper { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.content-area { display: grid; grid-template-columns: 1fr 320px; gap: 32px; padding: 40px 0; }

/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
  background: var(--green-dark);
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  padding: 6px 0;
  border-bottom: 2px solid var(--gold-primary);
}
.top-bar .site-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: var(--gold-light); }
.top-bar a:hover { color: #fff; }
.top-bar .disclaimer-tag {
  background: var(--gold-primary);
  color: var(--green-dark);
  padding: 2px 10px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.3px;
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-branding { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.site-logo {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 3px 12px rgba(201,149,42,0.4);
  flex-shrink: 0;
}
.site-title-wrap .site-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.2;
}
.site-title-wrap .site-tagline {
  font-size: 0.78rem;
  color: var(--gold-light);
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* NAV */
.main-nav ul { display: flex; gap: 4px; align-items: center; }
.main-nav ul li a {
  color: rgba(255,255,255,0.88);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: block;
}
.main-nav ul li a:hover,
.main-nav ul li.current-menu-item a {
  background: rgba(255,255,255,0.12);
  color: var(--gold-light);
}
.main-nav .nav-cta a {
  background: var(--gold-primary) !important;
  color: var(--green-dark) !important;
  font-weight: 700;
  padding: 8px 18px;
}
.main-nav .nav-cta a:hover { background: var(--gold-light) !important; }

/* Hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1.2rem;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
  background: linear-gradient(160deg, var(--green-dark) 0%, var(--green-mid) 55%, var(--green-light) 100%);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(201,149,42,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,149,42,0.2);
  border: 1px solid rgba(201,149,42,0.5);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 12px;
  font-weight: 800;
}
.hero-title span { color: var(--gold-light); }
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 28px;
  line-height: 1.7;
  max-width: 620px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: var(--green-dark);
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.92rem;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 15px rgba(201,149,42,0.4);
  transition: var(--transition);
  border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(201,149,42,0.5); color: var(--green-dark); }
.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  display: inline-flex; align-items: center; gap: 8px;
  transition: var(--transition);
}
.btn-secondary:hover { background: rgba(255,255,255,0.18); color: #fff; }

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
}
.hero-stat .stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold-light);
  font-family: var(--font-heading);
  line-height: 1;
}
.hero-stat .stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 2px;
}

/* =============================================
   DISCLAIMER BANNER
   ============================================= */
.disclaimer-banner {
  background: linear-gradient(135deg, #fff8e6, #fdf3d0);
  border-left: 5px solid var(--gold-primary);
  border-top: 1px solid #e8cc80;
  border-bottom: 1px solid #e8cc80;
  padding: 14px 24px;
  font-size: 0.88rem;
  color: #5a4200;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.disclaimer-banner .disc-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 1px; }
.disclaimer-banner strong { color: #7a3c00; }
.disclaimer-banner a { color: var(--green-mid); font-weight: 600; text-decoration: underline; }

/* =============================================
   QUICK SERVICES CARDS
   ============================================= */
.quick-services {
  background: var(--white);
  padding: 50px 0;
  border-bottom: 1px solid var(--border);
}
.section-header { text-align: center; margin-bottom: 36px; }
.section-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-mid);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.section-title {
  font-size: 1.85rem;
  color: var(--green-dark);
  font-weight: 800;
  margin-bottom: 8px;
}
.section-desc { color: var(--text-muted); font-size: 0.95rem; max-width: 560px; margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-mid), var(--gold-primary));
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--green-light); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 14px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--green-mid); }
.service-card h3 { font-size: 0.9rem; color: var(--green-dark); margin-bottom: 6px; font-weight: 700; }
.service-card p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; margin: 0; }

/* =============================================
   MAIN CONTENT + SIDEBAR
   ============================================= */
.main-content { min-width: 0; }

/* Article styles */
.article-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}
.article-header {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  padding: 32px 36px;
  position: relative;
}
.article-header::after {
  content: '📋';
  position: absolute;
  right: 32px; top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  opacity: 0.15;
}
.article-header h1 {
  color: var(--white);
  font-size: 1.65rem;
  margin-bottom: 8px;
  line-height: 1.3;
}
.article-meta {
  display: flex; gap: 16px; flex-wrap: wrap;
  font-size: 0.78rem; color: rgba(255,255,255,0.7);
}
.article-meta span { display: flex; align-items: center; gap: 5px; }

.article-body { padding: 36px; }

.article-body h2 {
  font-size: 1.35rem;
  color: var(--green-dark);
  margin: 32px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--green-pale);
  display: flex; align-items: center; gap: 10px;
}
.article-body h2::before {
  content: '';
  width: 4px; height: 22px;
  background: linear-gradient(180deg, var(--gold-primary), var(--green-mid));
  border-radius: 4px;
  display: inline-block;
  flex-shrink: 0;
}
.article-body h3 {
  font-size: 1.1rem;
  color: var(--green-mid);
  margin: 22px 0 10px;
}
.article-body p {
  color: var(--text-body);
  font-size: 0.96rem;
  line-height: 1.85;
  margin-bottom: 14px;
}
.article-body strong { color: var(--green-dark); }

/* Info Box */
.info-box {
  background: var(--green-pale);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green-mid);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  margin: 20px 0;
}
.info-box p { margin: 0; font-size: 0.92rem; color: var(--green-dark); }

/* Gold Note Box */
.note-box {
  background: var(--gold-pale);
  border: 1px solid #e8cc80;
  border-left: 4px solid var(--gold-primary);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 0.88rem;
  color: #5a4200;
}
.note-box strong { color: #7a3c00; }

/* Steps list */
.steps-list { counter-reset: steps; list-style: none; margin: 16px 0 20px; }
.steps-list li {
  counter-increment: steps;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 0.94rem;
  color: var(--text-body);
}
.steps-list li::before {
  content: counter(steps);
  min-width: 28px; height: 28px;
  background: var(--green-mid);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Check list */
.check-list { list-style: none; margin: 14px 0 20px; }
.check-list li {
  padding: 8px 0 8px 32px;
  position: relative;
  font-size: 0.94rem;
  color: var(--text-body);
  border-bottom: 1px dashed var(--border);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-mid);
  font-weight: 700;
  background: var(--green-pale);
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  top: 10px;
}

/* Services table */
.services-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin: 20px 0 24px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.services-table thead tr {
  background: var(--green-dark);
  color: #fff;
}
.services-table thead th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.3px;
}
.services-table tbody tr { border-bottom: 1px solid var(--border); }
.services-table tbody tr:nth-child(even) { background: var(--green-pale); }
.services-table tbody tr:hover { background: #d4ede0; }
.services-table tbody td { padding: 11px 16px; color: var(--text-body); vertical-align: top; }
.services-table tbody td:first-child { font-weight: 600; color: var(--green-dark); }

/* FAQ Accordion */
.faq-section { margin-top: 32px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 16px 20px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--green-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}
.faq-question:hover { background: var(--green-pale); }
.faq-question.active { background: var(--green-dark); color: #fff; }
.faq-question .faq-icon { font-size: 1.1rem; flex-shrink: 0; transition: var(--transition); }
.faq-question.active .faq-icon { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 16px 20px;
  background: #f9fdfa;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.75;
  border-top: 1px solid var(--border);
}
.faq-answer.open { display: block; }

/* =============================================
   SIDEBAR
   ============================================= */
.sidebar { min-width: 0; }

.widget {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.widget-header {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  padding: 14px 20px;
  display: flex; align-items: center; gap: 10px;
}
.widget-header h3 {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.widget-header .w-icon { font-size: 1.1rem; }
.widget-body { padding: 16px 18px; }

/* Quick Links Widget */
.quick-links-list { list-style: none; }
.quick-links-list li { border-bottom: 1px solid var(--border); }
.quick-links-list li:last-child { border-bottom: none; }
.quick-links-list li a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 4px;
  font-size: 0.86rem;
  color: var(--text-body);
  font-weight: 500;
  transition: var(--transition);
}
.quick-links-list li a:hover { color: var(--green-mid); padding-left: 8px; }
.quick-links-list li a .arrow { color: var(--gold-primary); font-size: 0.8rem; }

/* Official Site Widget */
.official-widget {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  border-radius: var(--radius-md);
  padding: 22px;
  text-align: center;
  margin-bottom: 24px;
  border: 2px solid var(--gold-primary);
}
.official-widget .ow-icon { font-size: 2.5rem; margin-bottom: 10px; }
.official-widget h3 { color: #fff; font-size: 1rem; margin-bottom: 6px; }
.official-widget p { color: rgba(255,255,255,0.75); font-size: 0.8rem; margin-bottom: 16px; line-height: 1.5; }
.official-widget a {
  display: block;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: var(--green-dark);
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  transition: var(--transition);
}
.official-widget a:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(201,149,42,0.5); color: var(--green-dark); }

/* Documents Widget */
.doc-list { list-style: none; }
.doc-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 4px;
  border-bottom: 1px solid var(--border);
  font-size: 0.84rem;
  color: var(--text-body);
}
.doc-list li:last-child { border-bottom: none; }
.doc-list li .doc-icon {
  width: 30px; height: 30px;
  background: var(--green-pale);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Search Widget */
.search-form { display: flex; gap: 8px; }
.search-form input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
  transition: var(--transition);
}
.search-form input:focus { border-color: var(--green-mid); box-shadow: 0 0 0 3px rgba(26,92,68,0.1); }
.search-form button {
  background: var(--green-mid);
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
}
.search-form button:hover { background: var(--green-dark); }

/* =============================================
   FEATURES STRIP
   ============================================= */
.features-strip {
  background: var(--green-dark);
  padding: 36px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-item { text-align: center; }
.feature-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}
.feature-item h4 { color: var(--gold-light); font-size: 0.92rem; margin-bottom: 5px; }
.feature-item p { color: rgba(255,255,255,0.6); font-size: 0.78rem; line-height: 1.5; margin: 0; }

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8rem; color: var(--text-muted);
}
.breadcrumb a { color: var(--green-mid); }
.breadcrumb .sep { color: var(--border); }
.breadcrumb .current { color: var(--gold-primary); font-weight: 600; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 0;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-about .footer-logo {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.footer-about .footer-logo .logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.footer-about .footer-logo span { color: #fff; font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; }
.footer-about p { font-size: 0.84rem; line-height: 1.7; margin-bottom: 14px; }
.footer-disclaimer {
  background: rgba(201,149,42,0.12);
  border: 1px solid rgba(201,149,42,0.3);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.footer-disclaimer strong { color: var(--gold-light); }

.footer-col h4 {
  color: var(--gold-light);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.68);
  font-size: 0.84rem;
  transition: var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.footer-col ul li a::before { content: '›'; color: var(--gold-primary); font-weight: 700; }
.footer-col ul li a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-bottom {
  background: rgba(0,0,0,0.25);
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: var(--gold-light); }
.footer-bottom .official-link {
  background: rgba(201,149,42,0.15);
  border: 1px solid rgba(201,149,42,0.3);
  padding: 5px 14px;
  border-radius: 20px;
  color: var(--gold-light) !important;
  font-weight: 600;
}

/* =============================================
   SCROLL TO TOP
   ============================================= */
.scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--gold-primary);
  color: var(--green-dark);
  border: none; cursor: pointer;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none;
  transition: var(--transition);
  z-index: 999;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--gold-light); transform: translateY(-3px); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .content-area { grid-template-columns: 1fr; }
  .sidebar { order: -1; }
  .hero-title { font-size: 1.75rem; }
  .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--green-dark); padding: 16px; }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .menu-toggle { display: block; }
  .article-body { padding: 22px; }
  .article-header { padding: 22px; }
  .hero-buttons { flex-direction: column; gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; }
  .top-bar .site-wrapper { flex-direction: column; gap: 6px; text-align: center; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
}

/* =============================================
   WORDPRESS CORE CLASSES
   ============================================= */
.aligncenter { display: block; margin: 0 auto; }
.alignleft { float: left; margin: 0 20px 16px 0; }
.alignright { float: right; margin: 0 0 16px 20px; }
.wp-caption { max-width: 100%; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.sticky { /* sticky post */ }
.bypostauthor { /* author post */ }
