/* ============================================================
   SpamReport Dubai — Main Stylesheet
   Design: Clean Professional with Bold Risk Accents
   Fonts: Plus Jakarta Sans (EN/TR) / IBM Plex Sans Arabic (AR)
   ============================================================ */

:root {
  --primary: #1d4ed8;
  --primary-hover: #1e40af;
  --primary-light: #dbeafe;
  --accent: #0ea5e9;

  --danger: #dc2626;
  --danger-light: #fee2e2;
  --danger-hover: #b91c1c;

  --warning: #d97706;
  --warning-light: #fef3c7;
  --success: #059669;
  --success-light: #d1fae5;

  --gray-50:  #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  --white: #ffffff;
  --body-bg: #f8fafc;
  --card-bg: #ffffff;
  --border: #e5e7eb;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
  --shadow:    0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.07);

  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --header-h: 68px;
  --font-main: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-ar: 'IBM Plex Sans Arabic', 'Plus Jakarta Sans', sans-serif;

  /* Risk colors */
  --safe:      #10b981;
  --low:       #f59e0b;
  --medium:    #f97316;
  --high:      #ef4444;
  --dangerous: #991b1b;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-main);
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray-800);
  background: var(--body-bg);
  -webkit-font-smoothing: antialiased;
}
body.rtl { font-family: var(--font-ar); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
ul { list-style: none; }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 780px; margin: 0 auto; padding: 0 20px; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
  height: var(--header-h);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 20px;
  color: var(--gray-900);
  flex-shrink: 0;
}
.logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 17px;
}
.logo-accent { color: var(--primary); }
.logo--white .logo-text, .logo--white .logo-accent { color: white; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  transition: background .15s, color .15s;
}
.nav-link:hover { background: var(--gray-100); color: var(--gray-900); }
.nav-link--cta {
  background: var(--danger);
  color: white !important;
  padding: 7px 15px;
}
.nav-link--cta:hover { background: var(--danger-hover); }

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Language Switcher */
.lang-switcher { position: relative; }
.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 11px;
  background: var(--gray-100);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  color: var(--gray-700);
  transition: background .15s;
}
.lang-btn:hover { background: var(--gray-200); }
.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 160px;
  overflow: hidden;
  z-index: 100;
}
.lang-dropdown.open { display: block; }
.lang-dropdown a {
  display: block;
  padding: 9px 14px;
  font-size: 14px;
  color: var(--gray-700);
  transition: background .1s;
}
.lang-dropdown a:hover, .lang-dropdown a.active { background: var(--gray-50); color: var(--primary); font-weight: 600; }

/* User Menu */
.user-menu { position: relative; }
.user-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 10px 5px 5px;
  background: var(--gray-100);
  border: 1px solid var(--border);
  border-radius: 30px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
}
.user-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  object-fit: cover;
}
.user-avatar--initial {
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.user-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 180px;
  z-index: 100;
  overflow: hidden;
}
.user-dropdown.open { display: block; }
.user-info { padding: 12px 14px; border-bottom: 1px solid var(--border); }
.user-info strong { display: block; font-size: 14px; }
.reputation-badge {
  font-size: 11px;
  text-transform: capitalize;
  color: var(--primary);
  font-weight: 600;
}
.user-dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  font-size: 14px;
  color: var(--gray-700);
  transition: background .1s;
}
.user-dropdown a:hover { background: var(--gray-50); }

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 34px;
  height: 34px;
  padding: 7px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.mobile-toggle span {
  display: block;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: .2s;
}

.mobile-menu {
  display: none;
  background: white;
  border-top: 1px solid var(--border);
  padding: 16px 0;
}
.mobile-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}
.mobile-menu a:hover { background: var(--gray-50); }
.mobile-lang {
  display: flex;
  gap: 0;
  padding: 10px 20px;
}
.mobile-lang a {
  border: none !important;
  padding: 4px 10px !important;
  font-size: 12px !important;
  background: var(--gray-100);
  margin-right: 6px;
  border-radius: var(--radius-sm);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .15s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-sm { padding: 7px 14px; font-size: 13px; }
.btn-lg { padding: 13px 28px; font-size: 16px; border-radius: var(--radius-lg); }
.btn-primary { background: var(--primary); color: white; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-hover); }
.btn-danger { background: var(--danger); color: white; border-color: var(--danger); }
.btn-danger:hover { background: var(--danger-hover); }
.btn-success { background: var(--success); color: white; }
.btn-success:hover { filter: brightness(.9); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary-light); }
.btn-ghost { background: transparent; color: var(--gray-600); border-color: var(--border); }
.btn-ghost:hover { background: var(--gray-100); }
.btn-white { background: white; color: var(--gray-800); }
.btn-white:hover { background: var(--gray-100); }
.btn:disabled { opacity: .55; cursor: not-allowed; }
.btn-block { width: 100%; }

/* ===== RISK BADGES ===== */
.risk-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 11px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.risk-badge--safe      { background: var(--success-light); color: var(--success); }
.risk-badge--low       { background: var(--warning-light); color: var(--warning); }
.risk-badge--medium    { background: #ffedd5; color: #c2410c; }
.risk-badge--high      { background: var(--danger-light); color: var(--danger); }
.risk-badge--dangerous { background: #fca5a5; color: #7f1d1d; font-size: 13px; animation: pulse-badge 2s infinite; }

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220,38,38,.35); }
  50%       { box-shadow: 0 0 0 6px rgba(220,38,38,0); }
}

.risk-badge--lg { padding: 7px 18px; font-size: 14px; }

/* Scam Score Meter */
.scam-score-widget {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border);
  text-align: center;
}
.scam-score-circle {
  width: 130px; height: 130px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  border: 8px solid;
  transition: border-color .3s;
}
.scam-score-circle--safe      { border-color: var(--safe);      color: var(--safe); }
.scam-score-circle--low       { border-color: var(--low);       color: var(--low); }
.scam-score-circle--medium    { border-color: var(--medium);    color: var(--medium); }
.scam-score-circle--high      { border-color: var(--high);      color: var(--high); }
.scam-score-circle--dangerous { border-color: var(--dangerous); color: var(--dangerous); }
.scam-score-num {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}
.scam-score-label { font-size: 11px; font-weight: 600; opacity: .7; margin-top: 2px; }
.scam-score-title { font-size: 13px; color: var(--gray-500); margin-bottom: 4px; }
.scam-score-risk  { font-size: 15px; font-weight: 700; }

/* ===== CARDS ===== */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: var(--shadow); }
.card-body { padding: 20px; }
.card-header { padding: 16px 20px; border-bottom: 1px solid var(--border); }
.card-footer { padding: 14px 20px; border-top: 1px solid var(--border); background: var(--gray-50); }

/* Phone/Company List Cards */
.item-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: box-shadow .2s, transform .15s;
}
.item-card:hover { box-shadow: var(--shadow); transform: translateY(-1px); }
.item-card__icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.item-card__icon--phone   { background: var(--danger-light); color: var(--danger); }
.item-card__icon--company { background: var(--primary-light); color: var(--primary); }
.item-card__icon--safe    { background: var(--success-light); color: var(--success); }
.item-card__body { flex: 1; min-width: 0; }
.item-card__title {
  font-weight: 700;
  font-size: 15px;
  color: var(--gray-900);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.item-card__meta { font-size: 12px; color: var(--gray-500); margin-top: 2px; }
.item-card__actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #0c4a6e 100%);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner { position: relative; z-index: 1; text-align: center; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: #93c5fd;
  padding: 5px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: .04em;
}
.hero h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.hero h1 span { color: #60a5fa; }
.hero-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: #93c5fd;
  max-width: 600px;
  margin: 0 auto 36px;
  font-weight: 400;
}

/* Hero Search Bar */
.hero-search {
  max-width: 660px;
  margin: 0 auto;
}
.search-bar {
  display: flex;
  background: white;
  border-radius: var(--radius-xl);
  padding: 6px 6px 6px 20px;
  gap: 8px;
  align-items: center;
  box-shadow: 0 8px 40px rgba(0,0,0,.3);
}
.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  color: var(--gray-800);
  background: transparent;
  font-family: inherit;
  min-width: 0;
}
.search-bar input::placeholder { color: var(--gray-400); }
.search-bar .btn { border-radius: 18px; padding: 10px 22px; }

/* Search Autocomplete */
.search-autocomplete {
  position: absolute;
  top: calc(100% + 6px);
  left: 0; right: 0;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  z-index: 200;
  overflow: hidden;
  display: none;
}
.search-autocomplete.open { display: block; }
.autocomplete-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background .1s;
  border-bottom: 1px solid var(--gray-100);
}
.autocomplete-item:hover { background: var(--gray-50); }
.autocomplete-item:last-child { border-bottom: none; }
.autocomplete-type {
  width: 30px; height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

/* Hero Stats Strip */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-size: 28px;
  font-weight: 800;
  color: white;
  line-height: 1;
}
.hero-stat-label { font-size: 12px; color: #93c5fd; font-weight: 500; margin-top: 3px; }

/* ===== SECTION STYLES ===== */
.section { padding: 60px 0; }
.section--gray { background: var(--gray-50); }
.section--dark {
  background: var(--gray-900);
  color: white;
}
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 12px;
}
.section-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--gray-900);
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title .icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.section-title .icon--red   { background: var(--danger-light); color: var(--danger); }
.section-title .icon--blue  { background: var(--primary-light); color: var(--primary); }
.section-title .icon--green { background: var(--success-light); color: var(--success); }
.section-title .icon--warn  { background: var(--warning-light); color: var(--warning); }
.view-all { font-size: 13px; font-weight: 600; color: var(--primary); white-space: nowrap; }
.view-all:hover { text-decoration: underline; }

/* ===== GRID LAYOUTS ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.items-list { display: flex; flex-direction: column; gap: 10px; }

/* ===== TRENDING BANNER ===== */
.trending-section {
  background: linear-gradient(135deg, #7f1d1d, #dc2626);
  padding: 28px 0;
  overflow: hidden;
}
.trending-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fca5a5;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  white-space: nowrap;
  padding-right: 20px;
  border-right: 1px solid rgba(255,255,255,.2);
  margin-right: 20px;
}
.trending-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1;
}
.trending-scroll::-webkit-scrollbar { display: none; }
.trending-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: white;
  padding: 7px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  transition: background .15s;
  flex-shrink: 0;
}
.trending-pill:hover { background: rgba(255,255,255,.2); }
.trending-inner { display: flex; align-items: center; }

/* ===== STATISTICS ===== */
.stats-section { background: linear-gradient(135deg, #1e3a8a, #1d4ed8); padding: 56px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 2px; }
.stat-card {
  background: rgba(255,255,255,.1);
  padding: 28px 20px;
  text-align: center;
  border-radius: 0;
}
.stat-card:first-child { border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.stat-card:last-child  { border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }
.stat-num {
  font-size: 38px;
  font-weight: 800;
  color: white;
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  margin-top: 6px;
  font-weight: 500;
}
.stat-icon { font-size: 28px; margin-bottom: 10px; opacity: .8; }

/* ===== COMMENTS ===== */
.comment-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
}
.comment-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.comment-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.comment-author { font-weight: 600; font-size: 14px; }
.comment-date   { font-size: 12px; color: var(--gray-500); }
.comment-text   { font-size: 14px; color: var(--gray-700); line-height: 1.6; }

/* ===== STAR RATING ===== */
.star-rating { display: flex; gap: 3px; align-items: center; }
.star { font-size: 18px; cursor: pointer; color: var(--gray-300); transition: color .1s; }
.star.active, .star:hover, .star.hover { color: #f59e0b; }
.star-display { color: #f59e0b; font-size: 14px; }
.star-empty  { color: var(--gray-300); }

/* ===== FORM STYLES ===== */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.form-label span { color: var(--danger); margin-left: 2px; }
.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--gray-800);
  font-family: inherit;
  background: white;
  transition: border-color .15s, box-shadow .15s;
  outline: none;
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(29,78,216,.12);
}
.form-control::placeholder { color: var(--gray-400); }
textarea.form-control { resize: vertical; min-height: 110px; }
select.form-control { cursor: pointer; }
.form-hint { font-size: 12px; color: var(--gray-500); margin-top: 5px; }
.form-error { font-size: 12px; color: var(--danger); margin-top: 5px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== ALERTS ===== */
.alert {
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}
.alert-danger  { background: var(--danger-light); color: #991b1b; border: 1px solid #fca5a5; }
.alert-success { background: var(--success-light); color: #065f46; border: 1px solid #6ee7b7; }
.alert-warning { background: var(--warning-light); color: #92400e; border: 1px solid #fcd34d; }
.alert-info    { background: var(--primary-light); color: #1e40af; border: 1px solid #93c5fd; }

/* ===== PROFILE PAGE (Phone/Company) ===== */
.profile-hero {
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  padding: 44px 0 0;
  color: white;
}
.profile-hero__inner { display: flex; align-items: flex-start; gap: 28px; flex-wrap: wrap; }
.profile-hero__icon {
  width: 70px; height: 70px;
  background: rgba(255,255,255,.12);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  flex-shrink: 0;
}
.profile-hero__body { flex: 1; }
.profile-hero__number { font-size: 32px; font-weight: 800; letter-spacing: -.02em; }
.profile-hero__meta   { font-size: 14px; color: #93c5fd; margin-top: 4px; }
.profile-hero__tabs {
  display: flex;
  gap: 0;
  margin-top: 28px;
  border-bottom: none;
}
.profile-tab {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: .15s;
}
.profile-tab.active { color: white; border-color: #60a5fa; }

.profile-body { padding: 32px 0; }
.profile-sidebar { display: flex; flex-direction: column; gap: 20px; }
.profile-content { flex: 1; min-width: 0; }

.profile-layout { display: grid; grid-template-columns: 300px 1fr; gap: 28px; align-items: start; }

/* Progress bars for categories */
.category-bar { margin-bottom: 12px; }
.category-bar__label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 5px;
}
.bar-track { height: 8px; background: var(--gray-200); border-radius: 4px; overflow: hidden; }
.bar-fill  { height: 100%; background: var(--danger); border-radius: 4px; transition: width .6s ease; }

/* Vote buttons */
.vote-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.vote-btn {
  flex: 1;
  min-width: 120px;
  padding: 12px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: 2px solid;
  transition: .15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.vote-btn--spam    { border-color: var(--danger); color: var(--danger); background: transparent; }
.vote-btn--spam:hover    { background: var(--danger); color: white; }
.vote-btn--trusted { border-color: var(--success); color: var(--success); background: transparent; }
.vote-btn--trusted:hover { background: var(--success); color: white; }

/* Trust meter */
.trust-meter { margin: 16px 0; }
.trust-bar {
  height: 10px;
  border-radius: 5px;
  background: linear-gradient(to right, var(--danger) var(--spam-pct), var(--success) var(--spam-pct));
  margin: 8px 0;
}
.trust-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
}

/* ===== MAP ===== */
.map-section { padding: 60px 0; background: var(--gray-50); }
#dubai-map { height: 420px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }

/* ===== SEARCH PAGE ===== */
.search-page { padding: 40px 0 60px; }
.search-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.filter-btn {
  padding: 7px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid var(--border);
  background: white;
  cursor: pointer;
  transition: .15s;
  color: var(--gray-600);
}
.filter-btn.active, .filter-btn:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }

/* ===== WHO CALLED ME ===== */
.wc-hero { 
  background: linear-gradient(135deg, #1a0533, #4c0519);
  padding: 48px 0 60px;
  text-align: center;
  position: relative;
}
.wc-hero::after {
  content: '?';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 200px;
  color: rgba(255,255,255,.04);
  font-weight: 900;
  line-height: 1;
}
.wc-question {
  font-size: clamp(20px, 4vw, 36px);
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}
.wc-number {
  font-size: clamp(28px, 5vw, 54px);
  font-weight: 900;
  color: #fca5a5;
  letter-spacing: .02em;
  margin-bottom: 20px;
}

/* ===== PAGINATION ===== */
.pagination {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}
.page-btn {
  min-width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: .15s;
  color: var(--gray-600);
  background: white;
  text-decoration: none;
}
.page-btn:hover { border-color: var(--primary); color: var(--primary); }
.page-btn.active { background: var(--primary); color: white; border-color: var(--primary); }
.page-btn:disabled { opacity: .4; pointer-events: none; }

/* ===== TIMELINE ===== */
.timeline { position: relative; padding-left: 24px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 8px; top: 0; bottom: 0;
  width: 2px;
  background: var(--gray-200);
}
.timeline-item { position: relative; margin-bottom: 20px; }
.timeline-dot {
  position: absolute;
  left: -20px;
  top: 5px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--danger);
  border: 2px solid white;
  box-shadow: 0 0 0 2px var(--danger);
}
.timeline-content { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 16px; }
.timeline-date { font-size: 12px; color: var(--gray-500); margin-bottom: 4px; }
.timeline-text { font-size: 14px; color: var(--gray-700); }

/* ===== TAGS ===== */
.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
}
.tag--scam        { background: #fee2e2; color: #991b1b; }
.tag--fraud       { background: #fce7f3; color: #9d174d; }
.tag--telemarketing { background: #ede9fe; color: #5b21b6; }
.tag--phishing    { background: #ffedd5; color: #c2410c; }
.tag--fake_job    { background: #fef3c7; color: #92400e; }
.tag--fake_company{ background: #fee2e2; color: #7f1d1d; }
.tag--other       { background: var(--gray-100); color: var(--gray-600); }

/* ===== EMPTY STATE ===== */
.empty-state {
  text-align: center;
  padding: 48px 20px;
  color: var(--gray-400);
}
.empty-state i  { font-size: 48px; margin-bottom: 12px; }
.empty-state p  { font-size: 15px; }

/* ===== FOOTER ===== */
.site-footer {
  background: #0f172a;
  color: rgba(255,255,255,.75);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand p { font-size: 14px; line-height: 1.7; margin: 16px 0 20px; color: rgba(255,255,255,.55); }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: rgba(255,255,255,.6);
  transition: background .15s, color .15s;
}
.social-links a:hover { background: var(--primary); color: white; }
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.55);
  margin-bottom: 9px;
  transition: color .15s;
}
.footer-col a:hover { color: white; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.4); }
.footer-disclaimer { font-style: italic; font-size: 12px !important; }

/* ===== ADMIN (reused in frontend for inline components) ===== */
.badge {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.badge-pending  { background: var(--warning-light); color: var(--warning); }
.badge-approved { background: var(--success-light); color: var(--success); }
.badge-rejected { background: var(--danger-light); color: var(--danger); }
.badge-spam     { background: var(--danger-light); color: var(--danger); }
.badge-trusted  { background: var(--success-light); color: var(--success); }
.badge-verified { background: var(--success-light); color: var(--success); }
.badge-fake     { background: var(--danger-light); color: var(--danger); }
.badge-blocked  { background: var(--gray-200); color: var(--gray-600); }

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.text-muted  { color: var(--gray-500); }
.text-danger { color: var(--danger); }
.text-success { color: var(--success); }
.text-primary { color: var(--primary); }
.font-bold  { font-weight: 700; }
.font-semibold { font-weight: 600; }
.d-flex  { display: flex; }
.d-none  { display: none; }
.d-block { display: block; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.mt-1 { margin-top: 4px; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.p-4  { padding: 16px; }
.w-full { width: 100%; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.rounded-full { border-radius: 9999px; }
.divider { height: 1px; background: var(--border); margin: 20px 0; }

/* ===== COUNTER ANIMATION ===== */
.count-up { transition: opacity .3s; }

/* ===== LOADING SPINNER ===== */
.spinner {
  width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== SCROLL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .5s, transform .5s; }
.reveal.visible { opacity: 1; transform: none; }

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

@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-toggle { display: flex; }
  .mobile-menu.open { display: block; }
  .header-right .btn { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 48px 0 56px; }
  .section { padding: 40px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card:first-child { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .stat-card:last-child  { border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .profile-hero__inner { flex-direction: column; }
  .hero-stats { gap: 24px; }
  .trending-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .trending-label { border-right: none; padding-right: 0; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 26px; }
  .search-bar { padding: 4px 4px 4px 14px; }
  .search-bar .btn span { display: none; }
  .item-card { padding: 12px 14px; gap: 10px; }
  .stat-num { font-size: 28px; }
}

/* ── MOBILE MENU FIX ─────────────────────────── */
@media (max-width: 768px) {
    .header-inner {
        flex-wrap: nowrap !important;
        overflow: visible !important;
    }
    .main-nav {
        display: none !important;
    }
    .header-actions .btn {
        display: none !important;
    }
    .mobile-toggle {
        display: flex !important;
    }
    .mobile-menu {
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        left: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background: #0f172a !important;
        z-index: 9999 !important;
        padding: 80px 24px 40px !important;
        overflow-y: auto !important;
        transform: translateX(100%) !important;
        transition: transform .3s ease !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 4px !important;
    }
    .mobile-menu.is-open {
        transform: translateX(0) !important;
    }
    .mobile-menu a {
        display: block !important;
        padding: 14px 0 !important;
        font-size: 18px !important;
        font-weight: 600 !important;
        color: white !important;
        border-bottom: 1px solid rgba(255,255,255,.08) !important;
        text-decoration: none !important;
    }
    .mobile-menu a:hover {
        color: #60a5fa !important;
    }
    .mobile-toggle {
        background: none !important;
        border: none !important;
        cursor: pointer !important;
        padding: 8px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 5px !important;
        z-index: 10000 !important;
        position: relative !important;
    }
    .mobile-toggle span {
        display: block !important;
        width: 24px !important;
        height: 2px !important;
        background: #0f172a !important;
        border-radius: 2px !important;
        transition: all .3s !important;
    }
}

/* ── MOBILE RESPONSIVE GLOBAL FIX ─────────────── */
*, *::before, *::after {
    box-sizing: border-box !important;
}

html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

@media (max-width: 768px) {
    /* Container */
    .container, .container--narrow {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    /* Header */
    .header-inner {
        padding: 0 16px !important;
        height: 60px !important;
    }
    .logo-text { font-size: 18px !important; }

    /* Grid - tek kolon */
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr !important;
    }

    /* Hero */
    .hero { padding: 32px 0 !important; }
    .hero h1 { font-size: 22px !important; }
    .hero-subtitle { font-size: 14px !important; }
    .hero-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    /* Search bar */
    .search-bar {
        flex-wrap: wrap !important;
        gap: 8px !important;
    }
    .search-bar input { width: 100% !important; }
    .search-bar .btn { width: 100% !important; }

    /* Cards */
    .card { border-radius: 10px !important; }

    /* Item cards */
    .item-card { flex-wrap: wrap !important; }
    .item-card__actions { flex-wrap: wrap !important; }

    /* Buttons */
    .btn-lg { padding: 10px 16px !important; font-size: 14px !important; }

    /* Profile layout */
    .profile-layout {
        grid-template-columns: 1fr !important;
    }
    .profile-sidebar { order: 2 !important; }
    .profile-content { order: 1 !important; }

    /* Blog layout */
    .blog-layout {
        grid-template-columns: 1fr !important;
        padding: 20px 16px !important;
    }
    .blog-sidebar { display: none !important; }
    .blog-hero { min-height: 320px !important; }
    .blog-hero__title { font-size: 20px !important; }

    /* Stats section */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Report form */
    .form-row {
        flex-direction: column !important;
        gap: 0 !important;
    }

    /* Section padding */
    .section { padding: 28px 0 !important; }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    /* Tables */
    .a-table-wrap { overflow-x: auto !important; }

    /* Trending pills */
    .trending-scroll {
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
    }
    .trending-scroll::-webkit-scrollbar { display: none !important; }

    /* Map */
    #dubai-map { height: 250px !important; }

    /* CTA section */
    .cta-buttons {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    /* Prevent text overflow */
    p, h1, h2, h3, h4, span, div {
        word-break: break-word !important;
        overflow-wrap: break-word !important;
    }

    /* Images */
    img { max-width: 100% !important; height: auto !important; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 19px !important; }
    .hero-stat-num { font-size: 20px !important; }
    .hero-stats { grid-template-columns: repeat(2, 1fr) !important; }
    .stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .blog-hero { min-height: 280px !important; }
}

/* ══════════════════════════════════════════════
   HOMEPAGE REDESIGN — Professional UI
══════════════════════════════════════════════ */

/* HERO — Animated gradient mesh */
.hero {
    background: #0a0f1e !important;
    position: relative !important;
    overflow: hidden !important;
    padding: 80px 0 100px !important;
}
.hero::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background:
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(59,130,246,.18) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 30%, rgba(220,38,38,.12) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 60% 80%, rgba(99,102,241,.1) 0%, transparent 50%) !important;
    animation: heroGlow 8s ease-in-out infinite alternate !important;
}
.hero::after {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background-image:
        linear-gradient(rgba(59,130,246,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59,130,246,.06) 1px, transparent 1px) !important;
    background-size: 60px 60px !important;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 70%) !important;
}
@keyframes heroGlow {
    0%   { opacity: 1; transform: scale(1); }
    100% { opacity: .8; transform: scale(1.05); }
}
.hero-inner {
    position: relative !important;
    z-index: 2 !important;
}

/* Hero badge */
.hero-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: rgba(59,130,246,.12) !important;
    border: 1px solid rgba(59,130,246,.3) !important;
    color: #93c5fd !important;
    padding: 7px 18px !important;
    border-radius: 40px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: .04em !important;
    text-transform: uppercase !important;
    margin-bottom: 24px !important;
    backdrop-filter: blur(8px) !important;
}

/* Hero title */
.hero h1 {
    font-size: clamp(28px, 5vw, 52px) !important;
    font-weight: 900 !important;
    line-height: 1.15 !important;
    color: white !important;
    margin-bottom: 16px !important;
    letter-spacing: -.02em !important;
}
.hero h1 span { 
    background: linear-gradient(135deg, #60a5fa, #a78bfa) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}
.hero-subtitle {
    font-size: clamp(15px, 2vw, 18px) !important;
    color: rgba(255,255,255,.6) !important;
    max-width: 560px !important;
    margin: 0 auto 36px !important;
    line-height: 1.7 !important;
}

/* Search bar — glassmorphism */
.hero-search { max-width: 640px !important; margin: 0 auto !important; }
.search-bar {
    background: rgba(255,255,255,.08) !important;
    border: 1px solid rgba(255,255,255,.15) !important;
    border-radius: 16px !important;
    padding: 8px 8px 8px 20px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    backdrop-filter: blur(20px) !important;
    box-shadow: 0 8px 32px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.1) !important;
    transition: border-color .2s, box-shadow .2s !important;
}
.search-bar:focus-within {
    border-color: rgba(59,130,246,.6) !important;
    box-shadow: 0 8px 32px rgba(0,0,0,.3), 0 0 0 3px rgba(59,130,246,.15), inset 0 1px 0 rgba(255,255,255,.1) !important;
}
.search-bar input {
    background: transparent !important;
    border: none !important;
    color: white !important;
    font-size: 16px !important;
    flex: 1 !important;
    outline: none !important;
}
.search-bar input::placeholder { color: rgba(255,255,255,.4) !important; }
.search-bar .btn-primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 12px 24px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    box-shadow: 0 4px 12px rgba(37,99,235,.4) !important;
    transition: transform .15s, box-shadow .15s !important;
}
.search-bar .btn-primary:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 16px rgba(37,99,235,.5) !important;
}

/* Hero stats */
.hero-stats {
    display: flex !important;
    justify-content: center !important;
    gap: 40px !important;
    margin-top: 52px !important;
    flex-wrap: wrap !important;
}
.hero-stat {
    text-align: center !important;
    position: relative !important;
}
.hero-stat:not(:last-child)::after {
    content: '' !important;
    position: absolute !important;
    right: -20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 1px !important;
    height: 32px !important;
    background: rgba(255,255,255,.15) !important;
}
.hero-stat-num {
    font-size: 28px !important;
    font-weight: 900 !important;
    color: white !important;
    letter-spacing: -.02em !important;
    display: block !important;
}
.hero-stat-label {
    font-size: 11px !important;
    color: rgba(255,255,255,.5) !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: .06em !important;
    margin-top: 4px !important;
}

/* TRENDING — sleek dark pill */
.trending-section {
    background: rgba(255,255,255,.03) !important;
    border-top: 1px solid rgba(255,255,255,.06) !important;
    border-bottom: 1px solid rgba(255,255,255,.06) !important;
    padding: 14px 0 !important;
    backdrop-filter: blur(20px) !important;
}
.trending-label {
    background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
    color: white !important;
    padding: 5px 14px !important;
    border-radius: 8px !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
}
.trending-pill {
    background: rgba(255,255,255,.07) !important;
    border: 1px solid rgba(255,255,255,.1) !important;
    color: rgba(255,255,255,.85) !important;
    padding: 5px 14px !important;
    border-radius: 20px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    transition: background .15s, border-color .15s !important;
    white-space: nowrap !important;
}
.trending-pill:hover {
    background: rgba(255,255,255,.14) !important;
    border-color: rgba(255,255,255,.25) !important;
}

/* SECTION — clean cards */
.section { padding: 56px 0 !important; }
.section--gray { background: #f8fafc !important; }
.section-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 20px !important;
}
.section-title {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 0 !important;
}
.view-all {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #2563eb !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    padding: 6px 14px !important;
    border: 1px solid #dbeafe !important;
    border-radius: 8px !important;
    background: #eff6ff !important;
    transition: background .15s !important;
}
.view-all:hover { background: #dbeafe !important; }

/* ITEM CARDS */
.item-card {
    background: white !important;
    border: 1px solid #f1f5f9 !important;
    border-radius: 14px !important;
    padding: 16px !important;
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    cursor: pointer !important;
    transition: transform .2s, box-shadow .2s, border-color .2s !important;
    margin-bottom: 8px !important;
}
.item-card:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(0,0,0,.08) !important;
    border-color: #e2e8f0 !important;
}
.item-card__icon {
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    flex-shrink: 0 !important;
}
.item-card__icon--phone  { background: #fee2e2 !important; color: #dc2626 !important; }
.item-card__icon--company{ background: #dbeafe !important; color: #2563eb !important; }
.item-card__icon--safe   { background: #d1fae5 !important; color: #059669 !important; }
.item-card__title {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin-bottom: 3px !important;
}
.item-card__meta {
    font-size: 12px !important;
    color: #94a3b8 !important;
}
.item-card__actions { margin-left: auto !important; display: flex !important; flex-direction: column !important; align-items: flex-end !important; gap: 4px !important; }

/* RISK BADGES */
.risk-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    padding: 4px 10px !important;
    border-radius: 20px !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: .04em !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
}
.risk-badge--safe      { background: #d1fae5 !important; color: #065f46 !important; }
.risk-badge--low       { background: #fef3c7 !important; color: #92400e !important; }
.risk-badge--medium    { background: #ffedd5 !important; color: #9a3412 !important; }
.risk-badge--high      { background: #fee2e2 !important; color: #991b1b !important; }
.risk-badge--dangerous { background: #7f1d1d !important; color: #fca5a5 !important; }

/* STATS SECTION */
.stats-section {
    background: linear-gradient(135deg, #0a0f1e 0%, #1e3a8a 50%, #0a0f1e 100%) !important;
    padding: 64px 0 !important;
    position: relative !important;
    overflow: hidden !important;
}
.stats-section::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(59,130,246,.1) 0%, transparent 70%) !important;
}
.stats-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)) !important;
    gap: 1px !important;
    background: rgba(255,255,255,.08) !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    border: 1px solid rgba(255,255,255,.1) !important;
}
.stat-card {
    background: rgba(255,255,255,.04) !important;
    padding: 28px 20px !important;
    text-align: center !important;
    transition: background .2s !important;
}
.stat-card:hover { background: rgba(255,255,255,.08) !important; }
.stat-icon { font-size: 26px !important; margin-bottom: 10px !important; display: block !important; }
.stat-num {
    font-size: 30px !important;
    font-weight: 900 !important;
    color: white !important;
    letter-spacing: -.02em !important;
    display: block !important;
}
.stat-label {
    font-size: 11px !important;
    color: rgba(255,255,255,.5) !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: .06em !important;
    margin-top: 4px !important;
}

/* MAP SECTION */
.map-section { padding: 48px 0 !important; background: #f8fafc !important; }
#dubai-map {
    height: 420px !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 24px rgba(0,0,0,.1) !important;
    border: 1px solid #e2e8f0 !important;
}

/* COMMENT CARDS */
.comment-card {
    background: white !important;
    border: 1px solid #f1f5f9 !important;
    border-radius: 14px !important;
    padding: 20px !important;
    transition: box-shadow .2s !important;
}
.comment-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.06) !important; }
.comment-avatar {
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    background: linear-gradient(135deg, #2563eb, #7c3aed) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    flex-shrink: 0 !important;
}
.comment-header { display: flex !important; align-items: center !important; gap: 10px !important; margin-bottom: 10px !important; }
.comment-author { font-weight: 700 !important; font-size: 14px !important; color: #0f172a !important; }
.comment-date   { font-size: 12px !important; color: #94a3b8 !important; }
.comment-text   { font-size: 14px !important; color: #475569 !important; line-height: 1.6 !important; }

/* CTA SECTION */
.cta-section {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%) !important;
    padding: 72px 0 !important;
    position: relative !important;
    overflow: hidden !important;
}
.cta-section::before {
    content: '' !important;
    position: absolute !important;
    top: -50% !important;
    right: -10% !important;
    width: 500px !important;
    height: 500px !important;
    background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 70%) !important;
}

/* GRID */
.grid-2 { display: grid !important; grid-template-columns: repeat(2, 1fr) !important; gap: 20px !important; }
.grid-3 { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 20px !important; }

/* ICON wrappers */
.icon { width: 32px !important; height: 32px !important; border-radius: 8px !important; display: inline-flex !important; align-items: center !important; justify-content: center !important; font-size: 14px !important; }
.icon--red   { background: #fee2e2 !important; color: #dc2626 !important; }
.icon--blue  { background: #dbeafe !important; color: #2563eb !important; }
.icon--green { background: #d1fae5 !important; color: #059669 !important; }

/* ── TRENDING FIX ─────────────────────────── */
.trending-section {
    background: #0f172a !important;
}
.trending-pill {
    color: white !important;
}
.trending-pill span {
    color: rgba(255,255,255,.6) !important;
    font-size: 11px !important;
}
.trending-inner {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

/* ── MAP MARKERS — daha net ─────────────────── */
.leaflet-popup-content-wrapper {
    border-radius: 12px !important;
    box-shadow: 0 8px 24px rgba(0,0,0,.2) !important;
    border: 1px solid #e2e8f0 !important;
    padding: 0 !important;
}
.leaflet-popup-content {
    margin: 14px 16px !important;
    font-size: 13px !important;
    line-height: 1.6 !important;
}
.leaflet-popup-content strong {
    font-size: 14px !important;
    color: #0f172a !important;
    display: block !important;
    margin-bottom: 4px !important;
}
.leaflet-popup-tip-container { display: none !important; }

/* ── BLOG ARTICLE CONTENT STYLES ─────────────── */
.blog-article table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin: 24px 0 !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    box-shadow: 0 1px 4px rgba(0,0,0,.08) !important;
    font-size: 14px !important;
}
.blog-article table th {
    background: #1e3a8a !important;
    color: white !important;
    padding: 12px 16px !important;
    text-align: left !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    letter-spacing: .02em !important;
}
.blog-article table td {
    padding: 11px 16px !important;
    border-bottom: 1px solid #f1f5f9 !important;
    color: #374151 !important;
    vertical-align: middle !important;
}
.blog-article table tr:nth-child(even) td {
    background: #f8fafc !important;
}
.blog-article table tr:hover td {
    background: #eff6ff !important;
}

/* Callout boxes */
.blog-article .warning-box,
.blog-article div[class*="warning"] {
    background: #fef3c7 !important;
    border-left: 4px solid #f59e0b !important;
    padding: 14px 18px !important;
    border-radius: 0 8px 8px 0 !important;
    margin: 20px 0 !important;
    color: #92400e !important;
}
.blog-article .danger-box,
.blog-article div[class*="danger"] {
    background: #fee2e2 !important;
    border-left: 4px solid #dc2626 !important;
    padding: 14px 18px !important;
    border-radius: 0 8px 8px 0 !important;
    margin: 20px 0 !important;
    color: #991b1b !important;
}
.blog-article .success-box,
.blog-article div[class*="success"] {
    background: #d1fae5 !important;
    border-left: 4px solid #10b981 !important;
    padding: 14px 18px !important;
    border-radius: 0 8px 8px 0 !important;
    margin: 20px 0 !important;
    color: #065f46 !important;
}

/* Headings */
.blog-article h1 { font-size: 28px !important; font-weight: 800 !important; color: #0f172a !important; margin: 36px 0 14px !important; line-height: 1.3 !important; }
.blog-article h2 { font-size: 22px !important; font-weight: 800 !important; color: #0f172a !important; margin: 32px 0 12px !important; padding-bottom: 10px !important; border-bottom: 2px solid #e2e8f0 !important; }
.blog-article h3 { font-size: 18px !important; font-weight: 700 !important; color: #1e3a8a !important; margin: 24px 0 10px !important; }
.blog-article h4 { font-size: 16px !important; font-weight: 700 !important; color: #374151 !important; margin: 20px 0 8px !important; }

/* Lists */
.blog-article ul { list-style: none !important; padding-left: 0 !important; margin-bottom: 18px !important; }
.blog-article ul li { padding: 6px 0 6px 28px !important; position: relative !important; color: #374151 !important; }
.blog-article ul li::before { content: '→' !important; position: absolute !important; left: 0 !important; color: #3b82f6 !important; font-weight: 700 !important; }
.blog-article ol { padding-left: 24px !important; margin-bottom: 18px !important; }
.blog-article ol li { padding: 4px 0 !important; color: #374151 !important; margin-bottom: 6px !important; }

/* Blockquote */
.blog-article blockquote {
    border-left: 4px solid #3b82f6 !important;
    background: #eff6ff !important;
    padding: 16px 20px !important;
    margin: 24px 0 !important;
    border-radius: 0 8px 8px 0 !important;
    font-style: italic !important;
    color: #1e40af !important;
    font-size: 15px !important;
}

/* Strong / Bold */
.blog-article strong, .blog-article b { color: #0f172a !important; font-weight: 700 !important; }

/* Links */
.blog-article a { color: #2563eb !important; text-decoration: underline !important; font-weight: 500 !important; }
.blog-article a:hover { color: #1d4ed8 !important; }

/* Images */
.blog-article img { max-width: 100% !important; border-radius: 10px !important; margin: 20px 0 !important; box-shadow: 0 4px 16px rgba(0,0,0,.1) !important; }

/* Code */
.blog-article code { background: #f1f5f9 !important; padding: 2px 6px !important; border-radius: 4px !important; font-size: 13px !important; color: #dc2626 !important; }
.blog-article pre { background: #0f172a !important; color: #e2e8f0 !important; padding: 20px !important; border-radius: 10px !important; overflow-x: auto !important; margin: 20px 0 !important; }

/* HR */
.blog-article hr { border: none !important; border-top: 2px solid #f1f5f9 !important; margin: 32px 0 !important; }

/* ══════════════════════════════════════════
   MOBILE CRITICAL FIXES
══════════════════════════════════════════ */
@media (max-width: 768px) {

    /* Section titles - word-break fix */
    .section-title,
    .section-header h2,
    h1, h2, h3 {
        word-break: keep-all !important;
        overflow-wrap: break-word !important;
        white-space: normal !important;
        hyphens: none !important;
    }

    /* Grid 2 kolon - tek kolon yap */
    .grid-2,
    .grid-3,
    [class*="grid-"] {
        grid-template-columns: 1fr !important;
    }

    /* Item cards - 2 kolon olduğunda taşıyor */
    .items-grid,
    .spam-grid,
    .companies-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    /* Comment cards */
    .comments-grid {
        grid-template-columns: 1fr !important;
    }

    /* Comment card içi - dikey layout */
    .comment-card {
        width: 100% !important;
    }
    .comment-header {
        flex-wrap: nowrap !important;
        overflow: hidden !important;
    }
    .comment-author {
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        max-width: 120px !important;
    }

    /* Section padding */
    .section { padding: 24px 0 !important; }

    /* Container padding */
    .container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    /* Item card - tam genişlik */
    .item-card {
        width: 100% !important;
        flex-wrap: nowrap !important;
    }
    .item-card__title {
        font-size: 14px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        max-width: 160px !important;
    }

    /* Blog grid */
    .grid-3 {
        grid-template-columns: 1fr !important;
    }

    /* Stats section */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Trending scroll - horizontal */
    .trending-scroll {
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        padding-bottom: 4px !important;
    }

    /* Map */
    #dubai-map {
        height: 250px !important;
    }

    /* Section header */
    .section-header {
        flex-wrap: nowrap !important;
        gap: 8px !important;
    }
    .section-title {
        font-size: 15px !important;
        flex: 1 !important;
        min-width: 0 !important;
    }
    .view-all {
        font-size: 11px !important;
        padding: 5px 10px !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
    }

    /* Risk badge */
    .risk-badge {
        font-size: 10px !important;
        padding: 3px 7px !important;
        white-space: nowrap !important;
    }

    /* Hero */
    .hero { padding: 32px 0 40px !important; }
    .hero h1 { font-size: 22px !important; line-height: 1.3 !important; }
    .hero-subtitle { font-size: 13px !important; }
    .hero-stats {
        gap: 16px !important;
        margin-top: 28px !important;
    }
    .hero-stat-num { font-size: 20px !important; }
    .hero-stat::after { display: none !important; }
}

@media (max-width: 480px) {
    .section-title { font-size: 14px !important; }
    .item-card__title { max-width: 130px !important; }
    .hero h1 { font-size: 19px !important; }
}

/* Trending scroll - mobile fix */
.trending-scroll {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-behavior: smooth !important;
    cursor: grab !important;
    user-select: none !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    white-space: nowrap !important;
    display: flex !important;
    gap: 8px !important;
    padding: 4px 2px !important;
}
.trending-scroll::-webkit-scrollbar { display: none !important; }
.trending-scroll:active { cursor: grabbing !important; }
.trending-pill { flex-shrink: 0 !important; }

/* Trending section - full width fix */
.trending-section {
    padding: 10px 0 !important;
    overflow: hidden !important;
}
.trending-section > div {
    max-width: 100% !important;
    padding: 0 12px !important;
}
.trending-scroll {
    flex: 1 !important;
    min-width: 0 !important;
    overflow-x: auto !important;
    display: flex !important;
    gap: 8px !important;
    white-space: nowrap !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    padding-bottom: 2px !important;
}
.trending-scroll::-webkit-scrollbar { display: none !important; }
