/* ═══════════════════════════════════════════════
   CONSUMER ALERT — ROMAN FLOORS & REMODELING
   Master Stylesheet — Dark/Red Alert Theme
   ═══════════════════════════════════════════════ */

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

:root {
  --red:        #e63946;
  --red-dark:   #b02030;
  --red-glow:   rgba(230, 57, 70, 0.25);
  --red-dim:    rgba(230, 57, 70, 0.12);
  --bg:         #0d0d0d;
  --bg-2:       #111111;
  --bg-3:       #181818;
  --bg-card:    #161616;
  --bg-card2:   #1c1c1c;
  --border:     #2a2a2a;
  --border-red: rgba(230, 57, 70, 0.45);
  --text:       #e8e8e8;
  --text-muted: #8a8a8a;
  --text-dim:   #5a5a5a;
  --white:      #ffffff;
  --gold:       #f4c430;
  --font-body:  'Inter', sans-serif;
  --font-head:  'Oswald', sans-serif;
  --radius:     10px;
  --radius-sm:  6px;
  --shadow:     0 4px 24px rgba(0,0,0,0.5);
  --shadow-red: 0 4px 20px rgba(230, 57, 70, 0.3);
  --transition: all 0.3s ease;
}

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

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: var(--red); text-decoration: none; transition: var(--transition); }
a:hover { color: #ff6b6b; text-decoration: underline; }

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

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

/* ── TEXT UTILS ── */
.text-red  { color: var(--red); }
.text-muted { color: var(--text-muted); }

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-decoration: none !important;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-red {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: #fff;
  box-shadow: var(--shadow-red);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: #fff;
  color: #fff;
}

.btn-white {
  background: #fff;
  color: #0d0d0d;
  border-color: #fff;
}
.btn-white:hover {
  background: #ddd;
  color: #0d0d0d;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.85rem;
}

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

#navbar.scrolled {
  border-bottom-color: var(--red);
  box-shadow: 0 2px 20px rgba(230,57,70,0.2);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav-brand i { color: var(--red); font-size: 1.3rem; }

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

.nav-links a {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-links a:hover {
  color: #fff;
  background: rgba(255,255,255,0.06);
  text-decoration: none;
}

.nav-cta {
  background: var(--red) !important;
  color: #fff !important;
  font-weight: 700 !important;
  border-radius: var(--radius-sm) !important;
  margin-left: 8px;
}
.nav-cta:hover {
  background: var(--red-dark) !important;
  box-shadow: var(--shadow-red);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  padding: 8px;
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 80px;
  text-align: center;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(230,57,70,0.12) 0%, transparent 70%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,0.015) 60px,
      rgba(255,255,255,0.015) 61px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,0.015) 60px,
      rgba(255,255,255,0.015) 61px
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.alert-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 10px 24px;
  border-radius: 4px;
  margin-bottom: 28px;
  text-transform: uppercase;
  box-shadow: 0 0 30px rgba(230,57,70,0.5);
}

@keyframes pulse-shadow {
  0%, 100% { box-shadow: 0 0 20px rgba(230,57,70,0.4); }
  50%       { box-shadow: 0 0 50px rgba(230,57,70,0.8); }
}
.pulse { animation: pulse-shadow 2.5s ease-in-out infinite; }

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.hero-subtitle {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--red);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-tagline {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: center;
  margin-bottom: 40px;
}
.hero-meta span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 20px;
}
.hero-meta i { color: var(--red); }

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-dim);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}
.bounce { animation: bounce-down 1.6s ease-in-out infinite; }

/* ═══════════════════════════════════════
   STAT BAR
═══════════════════════════════════════ */
.stat-bar {
  background: var(--red);
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 40px;
  gap: 2px;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.stat-unit {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.25);
  align-self: stretch;
  margin: 10px 0;
}

/* ═══════════════════════════════════════
   SECTION BASE
═══════════════════════════════════════ */
.section {
  padding: 90px 0;
}
.section-dark {
  background: var(--bg-2);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  background: var(--red-dim);
  border: 1px solid var(--border-red);
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-desc a { color: var(--red); }

/* ═══════════════════════════════════════
   BUSINESS CARD
═══════════════════════════════════════ */
.business-card {
  background: var(--bg-card);
  border: 1px solid var(--border-red);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 50px;
  box-shadow: 0 0 40px rgba(230,57,70,0.08);
}
.bc-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.bc-col {}
.bc-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.bc-label i { color: var(--red); }
.bc-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}
.bc-value a { color: var(--red); font-weight: 600; }

/* ═══════════════════════════════════════
   RED FLAG CARDS
═══════════════════════════════════════ */
.redflag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
}

.redflag-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: var(--transition);
}
.redflag-card:hover {
  border-color: var(--red);
  background: var(--bg-card2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-red);
}

.rf-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--red-dim);
  border: 1px solid var(--border-red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.15rem;
}

.rf-content h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}
.rf-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.rf-content strong { color: var(--text); }

/* ═══════════════════════════════════════
   COMPLAINTS
═══════════════════════════════════════ */
.complaints-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.complaint-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}
.complaint-card:hover {
  border-color: var(--red);
  box-shadow: 0 6px 30px rgba(230,57,70,0.15);
  transform: translateY(-3px);
}

.cc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.cc-stars {
  display: flex;
  align-items: center;
  gap: 3px;
}
.cc-stars .fas.fa-star.filled { color: var(--red); font-size: 0.9rem; }
.cc-stars .far.fa-star { color: var(--border); font-size: 0.9rem; }
.cc-rating {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: 6px;
  font-weight: 600;
}

.cc-badge {
  background: var(--red-dim);
  color: var(--red);
  border: 1px solid var(--border-red);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 20px;
}

.cc-quote {
  border: none;
  padding: 0;
  font-size: 0.93rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.75;
  position: relative;
}
.cc-quote .fa-quote-left {
  color: var(--red);
  font-size: 1.2rem;
  margin-right: 6px;
  opacity: 0.8;
  vertical-align: middle;
}
.cc-quote strong { color: #fff; font-style: normal; }

.cc-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.cc-source {
  font-size: 0.75rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 5px;
}
.cc-source .fab.fa-yelp { color: #e00707; }

.cc-violation {
  font-size: 0.72rem;
  color: var(--red);
  font-weight: 600;
  text-align: right;
  max-width: 300px;
}

.complaints-note {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 24px;
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}
.complaints-note i { color: var(--red); margin-top: 2px; flex-shrink: 0; }
.complaints-note a { color: var(--red); margin-left: 8px; font-weight: 600; }

/* ═══════════════════════════════════════
   ACCORDION / LAWS
═══════════════════════════════════════ */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.accordion-item.open {
  border-color: var(--border-red);
  box-shadow: 0 4px 20px rgba(230,57,70,0.12);
}

.accordion-btn {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 26px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  transition: var(--transition);
}
.accordion-btn:hover { background: rgba(255,255,255,0.03); }
.accordion-item.open .accordion-btn { background: rgba(230,57,70,0.06); }

.acc-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.acc-num {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.acc-title {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
.acc-sub {
  display: block;
  font-size: 0.78rem;
  color: var(--red);
  font-weight: 500;
}

.acc-icon {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.accordion-item.open .acc-icon { transform: rotate(180deg); color: var(--red); }

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.accordion-body.open {
  max-height: 1200px;
}

.law-content {
  padding: 24px 26px 28px 26px;
  border-top: 1px solid var(--border);
}
.law-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.law-content h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 20px 0 12px;
}

.law-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.law-list li {
  display: flex;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding: 10px 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.law-list li i { color: var(--red); margin-top: 2px; flex-shrink: 0; }
.law-list li strong { color: #fff; }

.law-intro {
  background: rgba(230,57,70,0.06);
  border-left: 3px solid var(--red);
  padding: 14px 18px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 20px;
}
.law-intro p { margin: 0; }

.law-penalty {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}
.lp-item {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
}
.lp-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 8px;
}
.lp-item p { margin: 0; font-size: 0.84rem; }
.lp-item strong { color: #fff; }

.law-resources {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.law-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red) !important;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--border-red);
  background: var(--red-dim);
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  width: fit-content;
  text-decoration: none !important;
  transition: var(--transition);
}
.law-link:hover {
  background: rgba(230,57,70,0.22);
  border-color: var(--red);
}

.law-contact {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-sm);
}
.law-contact strong { color: var(--text); }
.law-contact i { color: var(--red); margin-right: 4px; }

.law-warning-box {
  background: rgba(230,57,70,0.1);
  border: 1px solid rgba(230,57,70,0.4);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 20px;
  font-size: 0.88rem;
  color: var(--text);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.law-warning-box i { color: var(--red); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.law-warning-box strong { color: var(--red); }

.penalty-table {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 16px;
}
.pt-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}
.pt-header {
  background: rgba(230,57,70,0.15);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
}
.pt-row span {
  padding: 12px 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.pt-row span:last-child { border-right: none; }
.pt-row:last-child span { border-bottom: none; }
.pt-row:not(.pt-header):hover { background: rgba(255,255,255,0.03); }

.law-note {
  font-size: 0.82rem !important;
  color: var(--text-muted);
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.law-note i { color: var(--red); flex-shrink: 0; margin-top: 2px; }

/* ═══════════════════════════════════════
   REPORT / ACTION STEPS
═══════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
  margin-bottom: 60px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: var(--transition);
}
.step-card:hover {
  border-color: var(--border-red);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(230,57,70,0.15);
}

.step-num {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 38px;
  height: 38px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius) 0 var(--radius-sm) 0;
}

.step-icon {
  margin-top: 18px;
  width: 52px;
  height: 52px;
  background: var(--red-dim);
  border: 1px solid var(--border-red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.3rem;
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.step-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.step-details {
  display: flex;
  flex-direction: column;
  gap: 7px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
}
.sd-item {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.sd-item i { color: var(--red); margin-top: 2px; flex-shrink: 0; }
.sd-item a { color: var(--red); font-weight: 500; word-break: break-all; }
.sd-item strong { color: #fff; }

/* ─── SHARE SECTION ─── */
.share-section {
  background: var(--bg-card);
  border: 1px solid var(--border-red);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
}
.share-section h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.share-section h3 i { color: var(--red); }
.share-section p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  font-family: var(--font-body);
}
.share-btn:hover { transform: translateY(-2px); }

.share-fb  { background: #1877f2; color: #fff; }
.share-fb:hover  { background: #1560c5; }
.share-tw  { background: #000; color: #fff; border-color: #333; }
.share-tw:hover  { background: #222; }
.share-wa  { background: #25d366; color: #fff; }
.share-wa:hover  { background: #1dad55; }
.share-copy { background: var(--bg-3); color: var(--text); border-color: var(--border); }
.share-copy:hover { border-color: var(--red); color: var(--red); }

.copy-confirm {
  margin-top: 14px;
  color: #4caf50;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ═══════════════════════════════════════
   TIPS
═══════════════════════════════════════ */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.tip-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: var(--transition);
}
.tip-card:hover {
  border-color: var(--border-red);
  transform: translateY(-3px);
  box-shadow: var(--shadow-red);
}

.tip-card-red {
  border-color: rgba(230,57,70,0.35);
  background: rgba(230,57,70,0.05);
}
.tip-card-red:hover { background: rgba(230,57,70,0.09); }

.tip-icon {
  width: 48px;
  height: 48px;
  background: var(--red-dim);
  border: 1px solid var(--border-red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.tip-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.35;
}
.tip-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
#footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}

.footer-top {
  margin-bottom: 40px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.footer-brand i { color: var(--red); }

.footer-mission {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.65;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.fl-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 16px;
}
.fl-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  transition: var(--transition);
  text-decoration: none;
}
.fl-col a:hover { color: #fff; padding-left: 4px; }

.footer-disclaimer {
  padding: 36px 0;
}
.disclaimer-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 24px 28px;
}
.disclaimer-box h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.disclaimer-box p {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.7;
}
.disclaimer-box strong { color: var(--text-muted); }

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* ═══════════════════════════════════════
   SCROLL REVEAL ANIMATION
═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET
═══════════════════════════════════════ */
@media (max-width: 900px) {
  .complaints-grid {
    grid-template-columns: 1fr;
  }
  .redflag-grid {
    grid-template-columns: 1fr;
  }
  .stat-divider { display: none; }
  .stat-bar { gap: 0; }
  .stat-item { padding: 16px 24px; border-bottom: 1px solid rgba(255,255,255,0.15); width: 50%; }
  .stat-item:nth-child(even) { border-left: 1px solid rgba(255,255,255,0.15); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 12px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 13px 24px;
    border-radius: 0;
    font-size: 1rem;
  }
  .nav-cta { margin: 8px 16px; border-radius: var(--radius-sm) !important; }
  .nav-toggle { display: block; }

  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 1.1rem; }
  .hero-buttons { flex-direction: column; align-items: center; }

  .steps-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }

  .acc-title { font-size: 0.9rem; }

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

  .share-buttons { flex-direction: column; align-items: center; }
  .share-btn { width: 100%; max-width: 280px; justify-content: center; }
}

@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .container { padding: 0 14px; }

  .stat-item { width: 100%; border-left: none !important; }
  .bc-row { grid-template-columns: 1fr; }

  .hero-meta { flex-direction: column; align-items: center; }
  .hero-meta span { font-size: 0.78rem; }

  .complaint-card { padding: 18px; }
  .cc-footer { flex-direction: column; }
  .cc-violation { text-align: left; max-width: 100%; }

  .pt-row { grid-template-columns: 1fr 1fr 1fr; }
  .pt-row span { padding: 8px 8px; font-size: 0.75rem; }

  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .accordion-btn { padding: 16px 18px; }
  .acc-num { width: 32px; height: 32px; font-size: 0.95rem; }
}
