/* ===========================
   CSS VARIABLES
   =========================== */
:root {
  --primary: #FF6B00;
  --primary-dark: #E65100;
  --primary-light: #FFF3E0;
  --secondary: #2E7D32;
  --dark: #3E2723;
  --darker: #1B0F0A;
  --white: #FFFFFF;
  --light-bg: #FFF8F0;
  --text: #1A1A1A;
  --text-light: #555;
  --gold: #FFB300;
  --shadow: rgba(0, 0, 0, 0.1);
}

/* ═══════ DARK MODE ═══════ */
[data-theme="dark"] {
  --primary: #FF8A3D;
  --primary-dark: #FF6B00;
  --primary-light: #2a1a0a;
  --secondary: #4CAF50;
  --dark: #e0d6cf;
  --darker: #f5f0eb;
  --white: #1a1a1a;
  --light-bg: #121212;
  --text: #e8e8e8;
  --text-light: #aaa;
  --gold: #FFC940;
  --shadow: rgba(0, 0, 0, 0.4);
}
[data-theme="dark"] body {
  background: #0d0d0d;
  color: #e8e8e8;
}
[data-theme="dark"] #navbar {
  background: #1a1a1a;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
[data-theme="dark"] #navbar.scrolled {
  background: rgba(26,26,26,0.95);
}
[data-theme="dark"] #top-bar {
  background: #111;
  border-bottom-color: #222;
}
[data-theme="dark"] .nav-links a {
  color: #ccc;
}
[data-theme="dark"] .nav-links a:hover,
[data-theme="dark"] .nav-links a.active {
  color: var(--primary);
}
[data-theme="dark"] footer {
  background: #111 !important;
}
[data-theme="dark"] .footer-col h4 {
  color: #eee;
}
[data-theme="dark"] .footer-col p,
[data-theme="dark"] .footer-col a,
[data-theme="dark"] .footer-col li a {
  color: #aaa;
}
[data-theme="dark"] .footer-bottom {
  border-top-color: #222;
}
[data-theme="dark"] .card,
[data-theme="dark"] .issue-card,
[data-theme="dark"] .team-card,
[data-theme="dark"] .faq-item,
[data-theme="dark"] .news-card,
[data-theme="dark"] .benefit-card,
[data-theme="dark"] .contact-info,
[data-theme="dark"] .contact-form {
  background: #1e1e1e;
  border-color: #2a2a2a;
  color: #ddd;
}
[data-theme="dark"] .card:hover,
[data-theme="dark"] .issue-card:hover,
[data-theme="dark"] .news-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}
[data-theme="dark"] h1, [data-theme="dark"] h2,
[data-theme="dark"] h3, [data-theme="dark"] h4,
[data-theme="dark"] h5, [data-theme="dark"] h6 {
  color: #f0f0f0;
}
[data-theme="dark"] .section-subtitle {
  color: #999;
}
[data-theme="dark"] input,
[data-theme="dark"] textarea,
[data-theme="dark"] select {
  background: #2a2a2a;
  border-color: #3a3a3a;
  color: #e8e8e8;
}
[data-theme="dark"] .newsletter-form input {
  background: #2a2a2a;
  color: #e8e8e8;
  border-color: #3a3a3a;
}
/* Dark mode theme toggle button */
.theme-toggle-btn {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: transparent; border: 2px solid rgba(128,128,128,0.2);
  cursor: pointer; font-size: 1.1rem;
  transition: all 0.3s ease;
  margin-left: 6px;
}
.theme-toggle-btn:hover {
  background: rgba(128,128,128,0.1);
  transform: rotate(30deg);
}
@media (max-width: 768px) {
  .theme-toggle-btn { width: 34px; height: 34px; font-size: 1rem; }
}

/* Install App Button */
.nav-install-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, #FF6B00, #e55d00);
  color: #fff; border: none; padding: 7px 14px;
  border-radius: 8px; font-size: 0.78rem; font-weight: 600;
  font-family: 'Poppins', sans-serif; cursor: pointer;
  white-space: nowrap; margin-left: 8px;
  transition: all 0.2s ease;
  animation: installPulse 2s infinite;
  box-shadow: 0 2px 12px rgba(255,107,0,0.35);
}
.nav-install-btn:hover {
  background: linear-gradient(135deg, #e55d00, #cc5200);
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(255,107,0,0.5);
}
@keyframes installPulse {
  0%, 100% { box-shadow: 0 2px 12px rgba(255,107,0,0.35); }
  50% { box-shadow: 0 2px 20px rgba(255,107,0,0.6); }
}
@media (max-width: 768px) {
  .nav-install-btn span { display: none; }
  .nav-install-btn { padding: 7px 10px; margin-left: 4px; }
}

/* ═══════ PAGE TRANSITIONS ═══════ */
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pageFadeOut {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-8px); }
}
main, .community-page, .page-content, #main-content {
  animation: pageFadeIn 0.4s ease-out;
}
body.page-exit main,
body.page-exit .community-page,
body.page-exit .page-content,
body.page-exit #main-content {
  animation: pageFadeOut 0.2s ease-in forwards;
}

/* ===========================
   1. RESET & BASE
   =========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html {
  touch-action: manipulation;
  -ms-touch-action: manipulation;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text);
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

/* Prevent iOS auto-zoom on input focus */
input, select, textarea { font-size: 16px !important; }


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

/* ===========================
   SECTION HEADERS (shared)
   =========================== */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-label {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary);
  margin: 15px auto 0;
  border-radius: 2px;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Required asterisk */
.required {
  color: #FF4444;
  font-weight: 700;
}

/* ===========================
   2. TOP BAR
   =========================== */
#top-bar {
  background: var(--primary);
  color: var(--white);
  height: 40px;
  overflow: hidden;
  font-size: 0.85rem;
}

.top-bar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.ticker-wrapper {
  overflow: hidden;
  flex: 1;
  margin-right: 20px;
}

.ticker-content {
  display: flex;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}

.ticker-content span {
  padding-right: 60px;
}

.social-icons {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
  flex-shrink: 0;
}

.social-icons a {
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.3s ease;
  font-size: 0.9rem;
}

.social-icons a:hover {
  opacity: 0.7;
}

/* ===========================
   3. NAVBAR
   =========================== */
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 10px var(--shadow);
  transition: all 0.3s ease;
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
}

.logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.logo span {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary);
}

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

.nav-links a {
  padding: 10px 15px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
  border-radius: 5px;
}

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

.nav-links a.active {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

.nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 10px 25px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
}

.nav-cta:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.4);
}

/* WhatsApp Join Channel Button (Navbar) */
/* ── Nav Profile Dropdown ── */
.nav-profile-wrap {
    position: relative; margin-left: 8px;
}
.nav-profile-btn {
    display: flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px; padding: 4px 12px 4px 4px;
    cursor: pointer; transition: all 0.2s; font-family: inherit;
    color: #fff;
}
.nav-profile-btn:hover { background: rgba(255,255,255,0.15); }
.nav-profile-avatar {
    width: 30px; height: 30px; border-radius: 50%;
    object-fit: cover; border: 2px solid rgba(255,107,0,0.4);
}
.nav-profile-name {
    font-size: 0.8rem; font-weight: 600; color: #fff;
    max-width: 80px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.nav-profile-dropdown {
    position: absolute; top: calc(100% + 8px); right: 0;
    background: #1e1e1e; border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px; min-width: 180px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    opacity: 0; visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    z-index: 9999; overflow: hidden;
}
.nav-profile-dropdown.show {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-profile-dropdown a {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 16px; color: #ccc; font-size: 0.82rem;
    text-decoration: none; transition: all 0.15s;
}
.nav-profile-dropdown a:hover {
    background: rgba(255,107,0,0.1); color: #FF6B00;
}
.nav-profile-dropdown a i { width: 16px; text-align: center; opacity: 0.7; }
.nav-profile-divider {
    height: 1px; background: rgba(255,255,255,0.08); margin: 4px 0;
}
.nav-profile-logout { color: #ef4444 !important; }
.nav-profile-logout:hover { background: rgba(239,68,68,0.1) !important; }

.nav-login-btn {
    display: flex; align-items: center; gap: 6px; margin-left: 8px;
    background: rgba(255,107,0,0.15); border: 1px solid rgba(255,107,0,0.3);
    color: #FF6B00; padding: 7px 16px; border-radius: 8px;
    font-size: 0.82rem; font-weight: 600; text-decoration: none;
    transition: all 0.2s;
}
.nav-login-btn:hover { background: #FF6B00; color: #fff; }

@media (max-width: 768px) {
    .nav-profile-wrap, .nav-login-btn { display: none; }
}

.nav-whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 2px 12px rgba(37,211,102,0.35);
  position: relative;
  overflow: hidden;
  margin-left: 6px;
}
.nav-whatsapp-btn::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50px;
  background: rgba(37,211,102,0.3);
  animation: waNavPulse 2.5s ease-in-out infinite;
  z-index: -1;
}
@keyframes waNavPulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.08); opacity: 0; }
}
.nav-whatsapp-btn i {
  font-size: 1.1rem;
}
.nav-whatsapp-btn:hover {
  background: linear-gradient(135deg, #1ebe5d, #0f7a6b);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  color: #fff !important;
}
.nav-whatsapp-btn:active {
  transform: translateY(0) scale(0.97);
}
@media (max-width: 768px) {
  .nav-whatsapp-btn span { display: none; }
  .nav-whatsapp-btn { padding: 10px; margin-left: 0; }
  .nav-whatsapp-btn i { font-size: 1.25rem; }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.hamburger span,
.hamburger .bar {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===========================
   4. HERO
   =========================== */
#hero {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(62, 39, 35, 0.85), rgba(255, 107, 0, 0.7));
  z-index: 0;
}

.hero-overlay {
  display: none; /* redundant overlay — handled by ::before */
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 160px 20px 100px;
  max-width: 900px;
}

.hero-content h1,
.hero-title {
  font-size: 4rem;
  font-weight: 800;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 10px;
  line-height: 1.1;
}

.hero-content .subtitle {
  font-size: 1.5rem;
  margin: 10px 0 5px;
  opacity: 0.9;
  font-weight: 300;
}

.hero-tagline {
  font-size: 1.8rem;
  min-height: 50px;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.cursor {
  display: inline-block;
  margin-left: 2px;
  animation: blink 0.8s infinite;
  color: var(--gold);
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: var(--white);
  font-size: 1.5rem;
  opacity: 0.7;
  animation: bounceDown 2s infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* Buttons */
.btn-primary {
  background: var(--primary);
  color: var(--white);
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.5);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-3px);
}

.btn-full {
  width: 100%;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.5); }
  70% { box-shadow: 0 0 0 20px rgba(255, 107, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); }
}

.btn-primary.pulse {
  animation: pulse 2s infinite;
}

/* ===========================
   5. ABOUT
   =========================== */
#about {
  background: var(--light-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-image-badge {
  position: absolute;
  bottom: -15px;
  right: -15px;
  background: var(--primary);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
}

.about-content .section-label {
  text-align: left;
}

.about-heading {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-content .btn-primary {
  margin-top: 10px;
}

/* ===========================
   6. COUNTER
   =========================== */
#counter {
  background: linear-gradient(135deg, var(--dark), var(--darker));
  color: var(--white);
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.counter-box {
  padding: 20px;
}

.counter-box i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
  display: block;
}

.counter-box .count {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.counter-box .counter-label {
  font-size: 0.9rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 8px;
}

/* ===========================
   7. MANIFESTO
   =========================== */
.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.policy-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.policy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
}

.policy-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.policy-card > .icon,
.policy-card > div.icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
  background: none;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
  position: static;
  overflow: visible;
}

.policy-card > .icon::before {
  display: none;
}

.policy-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text);
}

.policy-card p {
  color: var(--text-light);
  line-height: 1.7;
}

/* ===========================
   8. LEADERS
   =========================== */
#leaders {
  background: var(--light-bg);
}

.founder-card {
  max-width: 500px;
  margin: 0 auto 50px;
  text-align: center;
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px var(--shadow);
}

.founder-card img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--primary);
  margin-bottom: 20px;
}

.founder-card h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: var(--dark);
}

.founder-card > p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.founder-bio {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-top: 15px;
  padding: 0 10px;
}

.founder-socials {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.founder-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.founder-socials a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.leader-card {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px var(--shadow);
  transition: all 0.3s ease;
}

.leader-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--secondary);
  margin-bottom: 15px;
}

.leader-card h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--dark);
}

.leader-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.leader-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 15px;
}

.team-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.team-socials a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===========================
   9. JOIN
   =========================== */
#join {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
}

#join .section-label {
  color: rgba(255, 255, 255, 0.8);
}

#join .section-title {
  color: var(--white);
}

#join .section-title::after {
  background: var(--white);
}

#join .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.join-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.join-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 15px;
  border-radius: 10px;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: box-shadow 0.3s ease;
  background: var(--white);
  color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.submit-btn {
  grid-column: span 2;
  background: var(--dark);
  color: var(--white);
  padding: 15px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.submit-btn:hover {
  background: var(--darker);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.success-message {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  margin-top: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.success-message i {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 15px;
  display: block;
}

.success-message h4 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.success-message p {
  opacity: 0.9;
  line-height: 1.7;
}

.success-message.hidden {
  display: none;
}

/* ===========================
   10. MEMES
   =========================== */
.meme-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.meme-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow);
  transition: all 0.3s ease;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}

.meme-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  border-color: var(--primary);
}

.meme-image-wrapper {
  position: relative;
  overflow: hidden;
}

.meme-image-wrapper img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease;
}

.meme-card:hover .meme-image-wrapper img {
  transform: scale(1.03);
}

.meme-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 15px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.meme-card:hover .meme-overlay {
  opacity: 1;
  transform: translateY(0);
}

.meme-action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--white);
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.2s;
  border: 2px solid rgba(255,255,255,0.3);
}

.meme-action:hover {
  transform: scale(1.15);
  border-color: var(--white);
}

.meme-action.whatsapp { background: #25D366; }
.meme-action.twitter { background: #1DA1F2; }
.meme-action.download { background: var(--primary); }

.meme-caption {
  padding: 15px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
  line-height: 1.5;
}

.meme-cta {
  text-align: center;
  margin-top: 35px;
  padding: 30px;
  background: linear-gradient(135deg, rgba(255,107,0,0.08), rgba(255,107,0,0.03));
  border: 1px solid rgba(255,107,0,0.15);
  border-radius: 16px;
}

.meme-cta-text {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 15px;
}

.meme-cta-text strong {
  color: var(--primary);
}

/* ===========================
   11. NEWS
   =========================== */
#news {
  background: var(--light-bg);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.news-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow);
  transition: all 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-card-body {
  padding: 25px;
}

.news-card-body > div:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.news-card .date {
  font-size: 0.85rem;
  color: var(--text-light);
}

.news-card .tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.news-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: var(--text);
}

.news-card p {
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 1.7;
  font-size: 0.95rem;
}

.news-card .read-more {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.news-card .read-more:hover {
  color: var(--primary-dark);
}

/* ===========================
   12. SOCIAL WALL
   =========================== */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.social-card {
  background: var(--white);
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px var(--shadow);
  transition: all 0.3s ease;
}

.social-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.social-card .social-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.social-card .social-handle {
  font-size: 1rem;
  margin-bottom: 5px;
  color: var(--text);
  font-weight: 600;
}

.social-card .social-followers {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

/* Platform-specific icon colors */
.social-card.facebook .social-icon { color: #1877F2; }
.social-card.twitter .social-icon { color: #1DA1F2; }
.social-card.instagram .social-icon { color: #E4405F; }
.social-card.youtube .social-icon { color: #FF0000; }
.social-card.whatsapp .social-icon { color: #25D366; }

/* Social follow buttons (class: btn-social) */
.btn-social {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 600;
  color: var(--white) !important;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.social-card.facebook .btn-social { background: #1877F2; }
.social-card.twitter .btn-social { background: #1DA1F2; }
.social-card.instagram .btn-social { background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF); }
.social-card.youtube .btn-social { background: #FF0000; }
.social-card.whatsapp .btn-social { background: #25D366; }

.btn-social:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  opacity: 0.9;
}

/* ===========================
   13. FAQ
   =========================== */
#faq .container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 3px 10px var(--shadow);
  overflow: hidden;
}

.faq-question {
  padding: 20px 25px;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
  background: none;
  border: none;
  font-family: inherit;
  color: var(--text);
  text-align: left;
}

.faq-question:hover {
  background: var(--primary-light);
}

.faq-question span {
  flex: 1;
  padding-right: 15px;
}

.faq-question i {
  transition: transform 0.3s ease;
  font-size: 0.9rem;
  color: var(--text-light);
  flex-shrink: 0;
}

.faq-question i.rotated {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 25px;
  color: var(--text-light);
  line-height: 1.8;
}

.faq-answer.open {
  max-height: 300px;
  padding: 0 25px 20px;
}

/* ===========================
   14. CONTACT
   =========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info h4 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: var(--dark);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-item i {
  font-size: 1.3rem;
  color: var(--primary);
  width: 30px;
  text-align: center;
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-weight: 600;
  margin-bottom: 3px;
  color: var(--text);
}

.contact-item p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-item p a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item p a:hover {
  color: var(--primary-dark);
}

.contact-form-wrapper {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow);
}

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

.contact-form .form-group label {
  color: var(--text);
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 0.95rem;
  display: block;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
  background: var(--white);
  color: var(--text);
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.contact-form .form-group textarea {
  min-height: 120px;
  resize: vertical;
}

#contact .success-message {
  background: rgba(46, 125, 50, 0.1);
  border: 1px solid rgba(46, 125, 50, 0.2);
  margin-top: 20px;
}

#contact .success-message i {
  color: var(--secondary);
}

#contact .success-message h4 {
  color: var(--dark);
}

#contact .success-message p {
  color: var(--text-light);
}

/* ===========================
   15. FOOTER
   =========================== */
#footer {
  background: linear-gradient(180deg, var(--darker) 0%, #0D0604 100%);
  color: rgba(255, 255, 255, 0.75);
  border-top: 4px solid var(--primary);
  position: relative;
}

#footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--gold), var(--primary), transparent);
  opacity: 0.6;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding: 70px 0 40px;
}

/* About column */
.footer-col-about .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-col-about .footer-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(255, 107, 0, 0.3));
}

.footer-col-about .footer-logo span {
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--primary);
  letter-spacing: 1px;
}

.footer-col-about > p {
  line-height: 1.8;
  font-size: 0.92rem;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.65);
}

/* Social icons in About column */
.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.35);
  border-color: transparent;
}

/* Column headings */
.footer-col h4 {
  color: var(--white);
  margin-bottom: 22px;
  font-size: 1.15rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

/* Link columns */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 2px;
}

.footer-col li a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 0.93rem;
}

.footer-col li a i {
  font-size: 0.6rem;
  color: var(--primary);
  opacity: 0.5;
  transition: all 0.3s ease;
}

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

.footer-col li a:hover i {
  opacity: 1;
}

/* Newsletter column */
.footer-col p {
  line-height: 1.8;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
}

.newsletter-form {
  display: flex;
  margin-top: 18px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-form:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15);
}

.newsletter-form input {
  flex: 1;
  padding: 13px 16px;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  color: var(--white);
  min-width: 0;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 13px 20px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.newsletter-form button:hover {
  background: var(--primary-dark);
}

.newsletter-hint {
  margin-top: 10px;
  font-size: 0.78rem !important;
  color: rgba(255, 255, 255, 0.4) !important;
  line-height: 1.4 !important;
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 25px 0;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 10px;
}

.footer-tagline {
  color: var(--gold) !important;
  font-weight: 600;
  font-size: 0.9rem !important;
  letter-spacing: 0.5px;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--primary);
}

.footer-dev-credit {
  margin-top: 15px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.5px;
}
.footer-dev-credit a {
  color: rgba(255, 255, 255, 0.55) !important;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-dev-credit a:hover {
  color: var(--primary) !important;
}
/* ===========================
   15.5 COMMUNITY ISSUES BOARD
   =========================== */
#community {
  background: var(--light-bg);
}

/* Action Bar */
.community-action-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 15px;
}

.community-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.community-user-info span {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.95rem;
}

.btn-small {
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

/* Filter Pills */
.community-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  justify-content: center;
}

.filter-pill {
  padding: 8px 18px;
  border-radius: 25px;
  border: 2px solid #ddd;
  background: var(--white);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.filter-pill:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-pill.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* Community Feed Grid */
.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.community-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow);
  transition: all 0.3s ease;
}

.community-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.community-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.community-card-image:hover {
  transform: scale(1.02);
}

.community-card-body {
  padding: 20px;
}

.community-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 8px;
}

.community-card-meta .category-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.community-card-meta .post-date {
  font-size: 0.8rem;
  color: var(--text-light);
}

.community-card-body h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text);
  line-height: 1.4;
}

.community-card-body p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.community-card-footer,
.community-card-user-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* --- Post Stats Bar --- */
.post-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.post-stat-reactions { cursor: default; }
.post-stat-comments { cursor: pointer; }
.post-stat-comments:hover { text-decoration: underline; color: var(--primary); }

/* --- Action Buttons (Like / Comment / Share) --- */
.post-actions {
  display: flex;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 4px 0;
}

.post-action-btn-wrapper {
  position: relative;
  flex: 1;
}

.post-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 10px 8px;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.post-action-btn:hover {
  background: rgba(255,255,255,0.06);
}
.post-action-btn.reacted { color: var(--primary); }
.post-action-btn.reaction-love { color: #e74c3c; }
.post-action-btn.reaction-haha { color: #f1c40f; }
.post-action-btn.reaction-wow { color: #f1c40f; }
.post-action-btn.reaction-sad { color: #f1c40f; }
.post-action-btn.reaction-angry { color: #e67e22; }

/* --- Reaction Picker --- */
.reaction-picker {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) scale(0.8);
  display: flex;
  gap: 2px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  padding: 6px 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
  z-index: 100;
}
.reaction-picker.show {
  opacity: 1;
  transform: translateX(-50%) scale(1);
  pointer-events: all;
}
.reaction-emoji {
  font-size: 1.6rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 50%;
  transition: transform 0.2s;
  line-height: 1;
}
.reaction-emoji:hover {
  transform: scale(1.4);
  background: rgba(255,255,255,0.1);
}

/* --- Share Dropdown --- */
.share-dropdown {
  position: absolute;
  bottom: 100%;
  right: 0;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 8px 0;
  min-width: 180px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(5px);
  transition: all 0.2s;
  z-index: 100;
}
.share-dropdown.show {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.share-dropdown a,
.share-dropdown button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 18px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 0.88rem;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}
.share-dropdown a:hover,
.share-dropdown button:hover {
  background: rgba(255,255,255,0.06);
  color: var(--text-primary);
}
.share-dropdown i { width: 18px; text-align: center; }
.share-dropdown .fa-whatsapp { color: #25D366; }
.share-dropdown .fa-x-twitter { color: #1DA1F2; }
.share-dropdown .fa-facebook-f { color: #1877F2; }
.share-dropdown .fa-link { color: var(--primary); }

/* --- Comments Section --- */
.comments-section {
  padding-top: 12px;
}
.comments-list {
  max-height: 300px;
  overflow-y: auto;
  margin-bottom: 10px;
}
.comments-loading {
  text-align: center;
  padding: 15px;
  color: var(--text-muted);
}
.comment-item {
  display: flex;
  gap: 10px;
  padding: 10px 0;
}
.comment-item + .comment-item {
  border-top: 1px solid rgba(255,255,255,0.05);
}
.comment-avatar {
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
  line-height: 1;
  padding-top: 2px;
}
.comment-body {
  flex: 1;
  background: rgba(255,255,255,0.04);
  padding: 8px 12px;
  border-radius: 12px;
}
.comment-body strong {
  color: var(--text-primary);
  font-size: 0.85rem;
}
.comment-date {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-left: 6px;
}
.comment-body p {
  margin: 4px 0 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.4;
  word-break: break-word;
}
.no-comments {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 15px;
}
.load-more-comments {
  display: block;
  width: 100%;
  padding: 8px;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}
.load-more-comments:hover { text-decoration: underline; }

/* --- Comment Input --- */
.comment-input-wrapper {
  display: flex;
  gap: 8px;
  align-items: center;
}
.comment-input {
  flex: 1;
  padding: 10px 15px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  color: var(--text-primary);
  font-size: 0.88rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.comment-input::placeholder { color: var(--text-muted); }
.comment-input:focus { border-color: var(--primary); }
.comment-send-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: var(--primary);
  color: var(--white);
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}
.comment-send-btn:hover { background: var(--primary-dark); }

.community-card-user {
  font-size: 0.82rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 5px;
}

.community-card-user i {
  color: var(--primary);
}

.share-buttons {
  display: flex;
  gap: 8px;
}

.share-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--white);
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.share-btn.whatsapp { background: #25D366; }
.share-btn.twitter { background: #1DA1F2; }
.share-btn.facebook { background: #1877F2; }
.share-btn.copy-link { background: var(--text-light); }

/* Loading & Empty States */
.community-loading {
  text-align: center;
  padding: 40px;
  color: var(--text-light);
  font-size: 1rem;
}

.community-loading i {
  margin-right: 8px;
  color: var(--primary);
}

.community-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-light);
}

.community-empty i {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #ddd;
  display: block;
}

.community-load-more {
  text-align: center;
  margin-top: 30px;
}

/* Status Badges */
.status-badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.status-badge.pending { background: #FFF3E0; color: #E65100; }
.status-badge.approved { background: #E8F5E9; color: #2E7D32; }
.status-badge.rejected { background: #FFEBEE; color: #C62828; }

/* ===========================
   MODAL SYSTEM
   =========================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

/* Dark glass modal card */
.modal-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 35px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  animation: modalSlideIn 0.3s ease;
  width: 100%;
}
.modal-card h3 {
  color: var(--text-primary);
  font-size: 1.2rem;
}
.modal-card label {
  display: block;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.modal-card .form-group {
  margin-bottom: 18px;
}
.modal-card input[type="text"],
.modal-card textarea,
.modal-card select {
  width: 100%;
  padding: 12px 15px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
  -webkit-appearance: none;
}
.modal-card input[type="text"]::placeholder,
.modal-card textarea::placeholder {
  color: var(--text-muted);
}
.modal-card input[type="text"]:focus,
.modal-card textarea:focus,
.modal-card select:focus {
  border-color: var(--primary);
}
.modal-card select {
  cursor: pointer;
}
.modal-card select option {
  background: var(--darker);
  color: var(--text-primary);
}
.modal-card .modal-close {
  background: rgba(255,255,255,0.1);
  color: var(--text-primary);
}

.modal-content {
  background: var(--white);
  border-radius: 20px;
  padding: 35px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #f5f5f5;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 1rem;
  z-index: 1;
}

.modal-close:hover {
  background: var(--primary);
  color: var(--white);
}

/* Auth Modal */
.auth-modal {
  width: 100%;
  max-width: 440px;
}

.auth-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 25px;
  border-bottom: 2px solid #eee;
}

.auth-tab {
  flex: 1;
  padding: 12px;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-light);
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
}

.auth-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.auth-form-group {
  margin-bottom: 18px;
}

.auth-form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text);
}

.auth-form-group label i {
  margin-right: 6px;
  color: var(--primary);
  width: 16px;
}

.auth-form-group input,
.auth-form-group select,
.auth-form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: var(--white);
  color: var(--text);
}

.auth-form-group input:focus,
.auth-form-group select:focus,
.auth-form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.auth-form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.auth-form-group select {
  cursor: pointer;
}

.auth-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.auth-switch {
  text-align: center;
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.auth-switch a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.auth-error {
  background: #FFEBEE;
  color: #C62828;
  padding: 12px 16px;
  border-radius: 10px;
  margin-top: 15px;
  font-size: 0.9rem;
  text-align: center;
}

/* Post Modal */
.post-modal {
  width: 100%;
  max-width: 550px;
}

.post-modal h3 {
  font-size: 1.4rem;
  margin-bottom: 5px;
  color: var(--dark);
}

.post-modal h3 i {
  color: var(--primary);
  margin-right: 8px;
}

.modal-subtitle {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 25px;
}

/* Image Upload Zone */
.image-upload-zone {
  position: relative;
  border: 2px dashed #ddd;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #FAFAFA;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-upload-zone:hover {
  border-color: var(--primary);
  background: var(--primary-light);
}

.image-upload-zone input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.upload-placeholder i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 10px;
  display: block;
}

.upload-placeholder p {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 5px;
}

.upload-placeholder span {
  font-size: 0.8rem;
  color: var(--text-light);
}

.upload-preview {
  max-width: 100%;
  max-height: 200px;
  border-radius: 10px;
  object-fit: contain;
}

.form-hint {
  text-align: center;
  margin-top: 15px;
  font-size: 0.82rem;
  color: var(--text-light);
}

.form-hint i {
  margin-right: 5px;
  color: var(--primary);
}

/* My Posts Modal */
.my-posts-modal {
  width: 100%;
  max-width: 600px;
}

.my-posts-modal h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--dark);
}

.my-posts-modal h3 i {
  color: var(--primary);
  margin-right: 8px;
}

.my-post-item {
  display: flex;
  gap: 15px;
  padding: 15px;
  border-radius: 12px;
  background: #f9f9f9;
  margin-bottom: 12px;
  align-items: flex-start;
}

.my-post-item img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.my-post-item-info {
  flex: 1;
  min-width: 0;
}

.my-post-item-info h5 {
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.my-post-item-info p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 6px;
}

/* Image Preview Modal */
.image-preview-full {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

/* ===========================
   15.8 FLOATING ACTION BUTTON (FAB)
   =========================== */
.fab-report {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 6px 25px rgba(255, 107, 0, 0.45);
  transition: all 0.3s ease;
  animation: fabPulse 2s ease-in-out infinite;
}

.fab-report:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 35px rgba(255, 107, 0, 0.55);
  animation: none;
}

.fab-report i {
  font-size: 1.1rem;
}

@keyframes fabPulse {
  0%, 100% { box-shadow: 0 6px 25px rgba(255, 107, 0, 0.45); }
  50% { box-shadow: 0 6px 35px rgba(255, 107, 0, 0.7); }
}

/* ===========================
   16. BACK TO TOP
   =========================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.5);
}

/* ===========================
   17. ANIMATIONS
   =========================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===========================
   18. RESPONSIVE
   =========================== */

/* Large Tablet / Small Desktop */
@media (max-width: 1024px) {
  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .manifesto-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet / Mobile */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .hamburger.active .bar:nth-child(1),
  .hamburger.open .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  .hamburger.active .bar:nth-child(2),
  .hamburger.open .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(3),
  .hamburger.open .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(18, 18, 18, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    overflow-y: auto;
    display: flex;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links li {
    list-style: none;
    width: 100%;
  }

  .nav-links a {
    padding: 15px 20px;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: block;
    font-size: 1.05rem;
    color: var(--text-secondary, #ccc);
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--primary);
    background: rgba(255,107,0,0.08);
  }

  .nav-cta {
    margin-top: 10px;
    text-align: center !important;
  }

  /* Top bar: hide social icons on mobile */
  .social-icons {
    display: none;
  }

  .hero-content {
    padding: 140px 20px 80px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content .subtitle {
    font-size: 1.2rem;
  }

  .hero-tagline {
    font-size: 1.3rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 80%;
    text-align: center;
  }

  .section-title {
    font-size: 2rem;
  }

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

  .about-image-badge {
    right: 10px;
    bottom: -10px;
  }

  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

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

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

  .leader-card {
    max-width: 350px;
    margin: 0 auto;
  }

  .join-form {
    grid-template-columns: 1fr;
  }

  .submit-btn {
    grid-column: auto;
  }

  .form-group.full-width {
    grid-column: auto;
  }

  .meme-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .community-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .community-filters {
    gap: 6px;
  }

  .filter-pill {
    padding: 6px 12px;
    font-size: 0.78rem;
  }

  .auth-form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-col-about {
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer-col-about .footer-logo {
    justify-content: center;
  }

  .footer-col-about .footer-social {
    justify-content: center;
  }

  .footer-col h4::after {
    margin: 0 auto;
    left: auto;
    right: auto;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-content {
    padding: 130px 15px 70px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content .subtitle {
    font-size: 1rem;
  }

  .hero-tagline {
    font-size: 1.1rem;
  }

  section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .counter-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .counter-box .count {
    font-size: 2.5rem;
  }

  .counter-box i {
    font-size: 2rem;
  }

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

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

  .modal-content {
    padding: 25px 20px;
    border-radius: 15px;
  }

  .fab-report {
    padding: 14px;
    bottom: 20px;
    left: 20px;
  }

  .fab-text {
    display: none;
  }
  .social-grid {
    grid-template-columns: 1fr;
  }

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

  .btn-primary,
  .btn-secondary {
    padding: 12px 30px;
    font-size: 1rem;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
  }

  .founder-card {
    padding: 25px;
  }

  .founder-card img {
    width: 150px;
    height: 150px;
  }

  .leader-card img {
    width: 120px;
    height: 120px;
  }

  .about-heading {
    font-size: 1.8rem;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 10px;
  }

  .newsletter-form input {
    border-radius: 10px;
  }

  .newsletter-form button {
    border-radius: 10px;
    padding: 12px;
  }

  /* Add padding for bottom nav */
  body { padding-bottom: 70px; }
  footer { margin-bottom: 70px; }
  .fab-report { bottom: 85px; }
  .back-to-top { bottom: 85px; }
}

/* ===========================
   COMMUNITY SHOWCASE SECTION
   =========================== */

/* — How It Works Steps — */
.community-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.community-step {
  text-align: center;
  padding: 28px 24px;
  position: relative;
  flex: 0 1 200px;
}
.step-number {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,107,0,0.07);
  line-height: 1;
}
.step-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(255,107,0,0.12), rgba(255,107,0,0.04));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary, #FF6B00);
  margin: 0 auto 14px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.community-step:hover .step-icon {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px rgba(255,107,0,0.2);
}
.community-step h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark, #1B0F0A);
}
.community-step p {
  font-size: 0.82rem;
  color: var(--text-light, #666);
  line-height: 1.5;
}
.step-connector {
  font-size: 1.1rem;
  color: var(--primary, #FF6B00);
  opacity: 0.4;
  padding: 0 4px;
  align-self: center;
}

/* — Live Feed — */
.community-live-feed {
  background: var(--white, #fff);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
  margin-bottom: 36px;
}
.live-feed-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.live-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--dark, #1B0F0A);
}
.live-dot {
  width: 10px;
  height: 10px;
  background: #ef4444;
  border-radius: 50%;
  display: inline-block;
  animation: livePulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(239,68,68,0.4);
}
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(239,68,68,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(239,68,68,0); }
  100% { box-shadow: 0 0 0 0 rgba(239,68,68,0); }
}
.view-all-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary, #FF6B00);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.view-all-link:hover {
  gap: 10px;
}
.live-feed-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.live-feed-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  background: #fff;
  text-decoration: none;
  color: inherit;
  display: block;
}
.live-feed-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(255,107,0,0.12);
}
.live-feed-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.live-feed-card:hover img {
  transform: scale(1.05);
}
.live-feed-card-body {
  padding: 12px 14px;
}
.live-feed-card-body h5 {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--dark, #1B0F0A);
}
.live-feed-tag {
  font-size: 0.65rem;
  font-weight: 700;
  background: rgba(255,107,0,0.1);
  color: var(--primary, #FF6B00);
  padding: 3px 8px;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  display: inline-block;
  margin-bottom: 4px;
}
.live-feed-meta {
  font-size: 0.7rem;
  color: var(--text-light, #999);
  display: flex;
  align-items: center;
  gap: 4px;
}
.live-feed-card .img-wrap {
  overflow: hidden;
  position: relative;
}
.live-feed-card .no-img {
  width: 100%;
  height: 140px;
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d1d5db;
  font-size: 2rem;
}

/* Skeleton loading */
.live-feed-skeleton {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
  background: #fff;
}
.skeleton-img {
  width: 100%;
  height: 140px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
.skeleton-text {
  height: 12px;
  margin: 12px 14px 0;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  border-radius: 6px;
  animation: shimmer 1.5s infinite;
}
.skeleton-text.short {
  width: 60%;
  margin-bottom: 14px;
  margin-top: 8px;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* — Stats & CTA — */
.community-cta-wrapper {
  max-width: 900px;
  margin: 0 auto;
}
.community-cta-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.community-stat-card {
  background: var(--white, #fff);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.community-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(255,107,0,0.12);
}
.community-stat-card > i {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 10px;
  display: block;
}
.community-stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), #E65100);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
  line-height: 1.2;
}
.community-stat-label {
  font-size: 0.72rem;
  color: var(--text-light, #666);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Big CTA Bar */
.community-big-cta {
  background: linear-gradient(135deg, #1B0F0A 0%, #3a1f12 60%, #4a2515 100%);
  border-radius: 18px;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 8px 30px rgba(27,15,10,0.3);
  position: relative;
  overflow: hidden;
}
.community-big-cta::before {
  content: '🪳';
  position: absolute;
  right: 20px;
  top: -10px;
  font-size: 6rem;
  opacity: 0.06;
  transform: rotate(15deg);
}
.community-big-cta-text h4 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.community-big-cta-text p {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  line-height: 1.5;
  max-width: 420px;
}
.community-cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.community-cta-btns .btn {
  padding: 13px 28px;
  font-size: 0.92rem;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  transition: all 0.3s;
  white-space: nowrap;
}
.community-cta-btns .btn-secondary {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
}
.community-cta-btns .btn-secondary:hover {
  background: rgba(255,255,255,0.2);
}

@media (max-width: 900px) {
  .live-feed-grid { grid-template-columns: repeat(2, 1fr); }
  .community-cta-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .community-steps { flex-direction: column; gap: 0; }
  .step-connector { transform: rotate(90deg); padding: 4px 0; }
  .live-feed-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .community-live-feed { padding: 16px; }
  .community-cta-cards { grid-template-columns: 1fr 1fr; }
  .community-big-cta { flex-direction: column; text-align: center; padding: 24px 20px; }
  .community-big-cta-text p { max-width: 100%; }
  .community-cta-btns { flex-direction: column; align-items: stretch; width: 100%; }
  .community-cta-btns .btn { justify-content: center; }
}

/* ===========================
   JOIN CTA SECTION
   =========================== */
.join-cta-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.join-cta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 35px;
}
.join-benefit-card {
  background: var(--white, #fff);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}
.join-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(255,107,0,0.12);
}
.join-benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,107,0,0.15), rgba(255,59,0,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--primary);
  font-size: 1.3rem;
}
.join-benefit-card h4 {
  color: var(--text, #1A1A1A);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.join-benefit-card p {
  color: var(--text-light, #666);
  font-size: 0.82rem;
  line-height: 1.5;
}
.join-cta-buttons {
  text-align: center;
}
.btn-lg {
  padding: 16px 40px;
  font-size: 1.05rem;
}
.join-cta-login {
  color: var(--text-light, #666);
  font-size: 0.88rem;
  margin-top: 14px;
}
.join-cta-login a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}
.join-cta-login a:hover {
  text-decoration: underline;
}
@media (max-width: 480px) {
  .join-cta-grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   STICKY WHATSAPP JOIN BAR
   =========================== */
.wa-join-bar {
  display: none;
  position: fixed;
  bottom: 64px;
  left: 0;
  right: 0;
  z-index: 9998;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  padding: 10px 20px;
  text-decoration: none;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -2px 15px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}
.wa-join-bar:hover {
  background: linear-gradient(135deg, #1ebe5d 0%, #0e7a6d 100%);
}
.wa-join-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}
.wa-join-inner i {
  font-size: 1.4rem;
  color: #fff;
  animation: waIconPulse 2s ease-in-out infinite;
}
@keyframes waIconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}
.wa-join-inner span {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.wa-join-arrow {
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  transition: transform 0.2s;
}
.wa-join-bar:hover .wa-join-arrow {
  transform: translateX(3px);
  color: #fff;
}

@media (max-width: 768px) {
  .wa-join-bar { display: flex !important; }
}

/* ===========================
   MOBILE BOTTOM NAVIGATION
   =========================== */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(245,240,230,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(61,43,31,.12);
  padding: 8px 0 env(safe-area-inset-bottom, 10px);
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 -2px 20px rgba(61,43,31,.08);
}

@media (max-width: 768px) {
  .mobile-bottom-nav { display: flex; }
  body { padding-bottom: 110px; }
  .community-page { padding-bottom: 110px; }
  .meme-feed-page { padding-bottom: 110px; }
  .profile-page { padding-bottom: 110px; }
  .blog-page { padding-bottom: 110px; }
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 6px 0;
  color: #8a7a6a;
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 600;
  transition: all 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  min-width: 60px;
  -webkit-tap-highlight-color: transparent;
}
.mobile-nav-item i {
  font-size: 1.3rem;
  transition: transform 0.2s, color 0.2s;
  color: #8a7a6a;
}
.mobile-nav-item span {
  color: inherit;
}
.mobile-nav-item.active {
  color: #c25e1a;
}
.mobile-nav-item.active i {
  transform: scale(1.15);
  color: #c25e1a;
}

/* Plus Button */
.mobile-nav-plus {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #e53935, #c62828);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  box-shadow: 0 4px 15px rgba(229,57,53,0.4);
  margin-top: -18px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.mobile-nav-post:active .mobile-nav-plus {
  transform: scale(0.92);
}
.mobile-nav-post span {
  margin-top: 2px;
}

/* ===========================
   MOBILE POST MENU
   =========================== */
.mobile-post-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(0,0,0,0.6);
  align-items: flex-end;
  justify-content: center;
}
.mobile-post-menu.show {
  display: flex;
}
.mobile-post-menu-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px 20px 0 0;
  width: 100%;
  max-width: 500px;
  padding: 25px 20px env(safe-area-inset-bottom, 20px);
  animation: slideUp 0.3s ease;
}
@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.mobile-post-menu-card h3 {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 18px;
}
.mobile-post-option {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  padding: 15px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  margin-bottom: 10px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: inherit;
  transition: background 0.2s;
}
.mobile-post-option:hover {
  background: rgba(255,255,255,0.08);
}
.mobile-post-option-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.mobile-post-option strong {
  display: block;
  color: var(--text-primary);
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.mobile-post-option p {
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.3;
  margin: 0;
}
.mobile-post-menu-close {
  display: block;
  width: 100%;
  padding: 14px;
  background: none;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
}
.mobile-post-menu-close:hover {
  background: rgba(255,255,255,0.06);
}

/* ===========================
   MEME UPLOAD ZONE
   =========================== */
.meme-upload-zone {
  border: 2px dashed rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 30px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  background: rgba(255,255,255,0.02);
}
.meme-upload-zone:hover {
  border-color: var(--primary);
  background: rgba(255,107,0,0.05);
}
.meme-upload-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.meme-upload-placeholder i {
  font-size: 2.5rem;
  color: var(--primary);
  opacity: 0.6;
}
.meme-upload-placeholder p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0;
}
.meme-upload-placeholder span {
  color: var(--text-muted);
  font-size: 0.75rem;
}
