/* ===== RESET & BASE ===== */
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family:'DM Sans',system-ui,-apple-system,sans-serif;
  background:#f8f7f4; color:#1a1a2e;
  min-height:100vh; line-height:1.5;
}

/* ===== NAVBAR ===== */
.navbar {
  background:#004B87; padding:0 24px; height:56px;
  display:flex; align-items:center; justify-content:space-between;
  box-shadow:0 2px 16px rgba(0,75,135,0.3);
  position:sticky; top:0; z-index:100;
}
.nav-left { display:flex; align-items:center; gap:10px; }
.flag-icon {
  width:32px; height:22px; background:#004B87;
  border:2px solid #FECC02; border-radius:3px;
  position:relative; overflow:hidden; flex-shrink:0;
}
.flag-h { position:absolute; left:0; top:7px; width:100%; height:6px; background:#FECC02; }
.flag-v { position:absolute; left:9px; top:0; width:6px; height:100%; background:#FECC02; }
.logo { font-weight:700; font-size:19px; color:white; letter-spacing:-0.5px; }
.logo-gold { color:#FECC02; }
.logo-dim { color:rgba(255,255,255,0.5); font-size:11px; margin-left:2px; }

.nav-links { display:flex; gap:4px; }
.nav-link {
  padding:7px 12px; border-radius:6px; border:none; font-size:12px;
  font-weight:600; cursor:pointer; transition:all 0.15s;
  background:transparent; color:rgba(255,255,255,0.7); text-decoration:none;
}
.nav-link:hover,.nav-link.active { background:rgba(255,255,255,0.2); color:white; }

.nav-right { display:flex; gap:8px; align-items:center; }
.search-box {
  background:rgba(255,255,255,0.12); border-radius:6px; padding:0 10px;
  height:32px; display:flex; align-items:center; width:180px;
}
.search-icon { font-size:13px; color:rgba(255,255,255,0.4); }
.search-input {
  background:none; border:none; outline:none; color:white;
  font-size:12px; margin-left:6px; width:100%; font-family:inherit;
}
.search-input::placeholder { color:rgba(255,255,255,0.4); }
.btn-join {
  padding:7px 16px; border-radius:6px; border:none;
  background:#FECC02; color:#004B87; font-size:12px;
  font-weight:700; cursor:pointer; text-decoration:none;
  transition:all 0.15s;
}
.btn-join:hover { background:#ffd633; }

/* ===== REGION CHOOSER ===== */
.region-chooser { position:relative; }
.region-chooser-toggle {
  display:flex; align-items:center; gap:6px; padding:5px 12px;
  background:rgba(255,255,255,0.12); border-radius:6px; cursor:pointer;
  font-size:12px; color:rgba(255,255,255,0.85); font-weight:600;
  transition:all 0.15s; white-space:nowrap;
}
.region-chooser-toggle:hover { background:rgba(255,255,255,0.2); color:white; }
.rc-dot { width:8px; height:8px; border-radius:50%; flex-shrink:0; }
.rc-arrow { font-size:8px; margin-left:2px; opacity:0.6; }
.region-chooser-dropdown {
  display:none; position:absolute; top:100%; right:0; margin-top:6px;
  background:#1e293b; border:1px solid #334155; border-radius:10px;
  padding:6px; min-width:180px; z-index:200;
  box-shadow:0 8px 32px rgba(0,0,0,0.4);
  max-height:400px; overflow-y:auto;
}
.region-chooser-dropdown.open { display:block; }
.rc-option {
  display:flex; align-items:center; gap:8px; padding:8px 12px;
  border-radius:6px; cursor:pointer; font-size:13px; color:#cbd5e1;
  transition:all 0.1s;
}
.rc-option:hover { background:#334155; color:white; }
.rc-option.active { background:rgba(254,204,2,0.1); color:#FECC02; }
.rc-option .rc-name { font-weight:500; }

/* Region dot hover via CSS */
.region-dot:hover { transform-origin:center; r:9; stroke-width:2.5; filter:drop-shadow(0 0 6px currentColor); }

/* Region detail actions */
.rd-actions { display:flex; align-items:center; gap:10px; }
.rd-home-check {
  display:flex; align-items:center; gap:5px; font-size:12px; font-weight:600;
  color:#004B87; cursor:pointer; white-space:nowrap;
}
.rd-home-check input[type="checkbox"] {
  width:16px; height:16px; accent-color:#004B87; cursor:pointer;
}
.rd-share-btn {
  padding:5px 14px; border-radius:6px; border:1.5px solid #004B87;
  background:rgba(0,75,135,0.05); font-size:12px; font-weight:600; cursor:pointer;
  color:#004B87; font-family:inherit; transition:all 0.15s;
}
.rd-share-btn:hover { background:#004B87; color:white; }
.rd-close-btn {
  padding:5px 14px; border-radius:6px; border:1.5px solid #e5e2dc;
  background:white; font-size:12px; font-weight:600; cursor:pointer;
  color:#6b7280; font-family:inherit; transition:all 0.15s;
}
.rd-close-btn:hover { border-color:#dc2626; color:#dc2626; background:#fef2f2; }

.hamburger { display:none; background:none; border:none; cursor:pointer; padding:4px; }
.hamburger span { display:block; width:22px; height:2px; background:white; margin:5px 0; border-radius:2px; transition:all 0.2s; }
.mobile-nav {
  display:none; flex-direction:column; gap:2px; padding:8px 16px 16px;
  background:#004B87; border-bottom:2px solid rgba(255,255,255,0.1);
}
.mobile-nav a {
  color:rgba(255,255,255,0.85); text-decoration:none; padding:10px 12px;
  border-radius:8px; font-size:14px; font-weight:500;
}
.mobile-nav a:hover { background:rgba(255,255,255,0.1); color:white; }
.mobile-nav.open { display:flex; }

/* ===== HERO ===== */
.hero {
  background:linear-gradient(135deg,#004B87 0%,#0369a1 40%,#0d9488 100%);
  padding:40px 24px 32px; color:white; position:relative; overflow:hidden;
}
.hero-dots {
  position:absolute; inset:0; opacity:0.06;
  background-image:radial-gradient(circle at 20% 50%,white 1px,transparent 1px),radial-gradient(circle at 80% 20%,white 1px,transparent 1px);
  background-size:60px 60px,40px 40px;
}
.hero-inner {
  max-width:1200px; margin:0 auto; display:flex; gap:32px;
  position:relative; align-items:center;
}
.hero-text { flex:1; }
.hero-text h1 {
  font-family:'Playfair Display',serif; font-size:clamp(28px,4vw,36px);
  font-weight:800; margin-bottom:10px; line-height:1.2; letter-spacing:-1px;
}
.gold { color:#FECC02; }
.hero-desc { font-size:16px; opacity:0.85; line-height:1.6; max-width:500px; margin-bottom:24px; }
.hero-stats { display:flex; gap:24px; margin-bottom:24px; flex-wrap:wrap; }
.stat { text-align:center; }
.stat-val { font-size:28px; font-weight:800; color:#FECC02; }
.stat-label { font-size:11px; opacity:0.7; text-transform:uppercase; letter-spacing:1px; }
.hero-btns { display:flex; gap:8px; flex-wrap:wrap; }
.btn-register {
  padding:12px 28px; border-radius:10px; border:none; background:#FECC02;
  color:#004B87; font-size:15px; font-weight:700; cursor:pointer;
  box-shadow:0 4px 12px rgba(254,204,2,0.4); text-decoration:none;
  transition:all 0.15s;
}
.btn-register:hover { background:#ffd633; transform:translateY(-1px); }
.btn-explore {
  padding:12px 28px; border-radius:10px; border:2px solid rgba(255,255,255,0.3);
  background:transparent; color:white; font-size:15px; font-weight:600;
  cursor:pointer; text-decoration:none; transition:all 0.15s;
}
.btn-explore:hover { border-color:rgba(255,255,255,0.6); background:rgba(255,255,255,0.05); }
.hero-map { width:260px; height:420px; flex-shrink:0; overflow:hidden; border-radius:12px; }

/* ===== REGION BAR ===== */
.region-bar {
  max-width:1200px; margin:-16px auto 0; padding:0 24px;
  position:relative; z-index:20;
}
.region-pills {
  background:white; border-radius:12px; padding:14px 20px;
  box-shadow:0 4px 20px rgba(0,0,0,0.06);
  display:flex; gap:8px; overflow-x:auto; -webkit-overflow-scrolling:touch;
}
.region-pills::-webkit-scrollbar { height:4px; }
.region-pills::-webkit-scrollbar-thumb { background:#e5e2dc; border-radius:4px; }
.region-pill {
  padding:8px 16px; border-radius:20px; border:none;
  font-size:12px; font-weight:600; cursor:pointer; white-space:nowrap;
  transition:all 0.15s; display:flex; align-items:center; gap:6px;
  font-family:inherit;
}
.region-pill:hover { filter:brightness(0.95); transform:translateY(-1px); }
.region-pill .pill-count {
  color:white; border-radius:10px; padding:1px 7px;
  font-size:10px; font-weight:700;
}
.region-detail {
  background:white; border-radius:12px; padding:16px;
  box-shadow:0 4px 20px rgba(0,0,0,0.08); transition:all 0.3s;
}
.rd-top { display:flex; justify-content:space-between; align-items:center; margin-bottom:10px; }
.rd-name { font-size:18px; font-weight:700; }
.rd-sub { font-size:12px; color:#6b7280; }
.rd-btn {
  color:white; border-radius:8px; padding:6px 14px;
  font-size:13px; font-weight:600; cursor:pointer; border:none;
}
.rd-stats { display:flex; gap:16px; }
.rd-stat-click { cursor:pointer; transition:all 0.15s; }
.rd-stat-click:hover { background:#eef2ff; border:1px solid #004B87; }
.rd-stat {
  flex:1; background:#f8f7f4; border-radius:8px; padding:8px 12px;
  text-align:center;
}
.rd-stat-val { font-size:20px; font-weight:800; }
.rd-stat-label { font-size:10px; color:#6b7280; font-weight:600; text-transform:uppercase; letter-spacing:0.5px; }

/* ===== MAIN ===== */
.main-content { max-width:1200px; margin:24px auto; padding:0 24px; }
.two-col { display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-bottom:24px; }
.card {
  background:white; border-radius:14px; padding:20px;
  box-shadow:0 2px 12px rgba(0,0,0,0.04);
}
.card.full-width { margin-bottom:24px; }
.section-header { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:16px; }
.section-title { font-size:20px; font-weight:700; display:flex; align-items:center; gap:8px; }
.section-sub { font-size:13px; color:#6b7280; margin-top:2px; }
.btn-outline {
  padding:6px 14px; border-radius:8px; border:1.5px solid #e5e2dc;
  background:white; font-size:12px; font-weight:600; cursor:pointer;
  color:#004B87; transition:all 0.15s; font-family:inherit;
}
.btn-outline:hover { border-color:#004B87; background:#f0f7ff; }

/* ===== EVENTS ===== */
.event-filters { display:flex; gap:4px; margin-bottom:14px; flex-wrap:wrap; }
.filter-btn {
  padding:4px 10px; border-radius:12px; border:none; font-size:11px;
  font-weight:600; cursor:pointer; background:#f3f4f6; color:#4b5563;
  font-family:inherit; transition:all 0.15s;
}
.filter-btn.active { background:#004B87; color:white; }
.filter-btn:hover:not(.active) { background:#e5e7eb; }
.event-list { display:flex; flex-direction:column; gap:6px; max-height:420px; overflow-y:auto; }
.event-item {
  display:flex; gap:12px; padding:10px 12px; border-radius:10px;
  border:1px solid #f3f4f6; transition:all 0.15s; cursor:pointer;
}
.event-item:hover { background:#f8fafc; }
.event-date {
  width:48px; height:48px; border-radius:10px;
  display:flex; flex-direction:column; align-items:center;
  justify-content:center; flex-shrink:0;
}
.event-date-num { font-size:14px; font-weight:800; line-height:1; }
.event-date-month { font-size:9px; font-weight:600; color:#6b7280; text-transform:uppercase; }
.event-info { flex:1; min-width:0; }
.event-title { font-size:13px; font-weight:600; margin-bottom:2px; }
.event-loc { font-size:11px; color:#6b7280; }
.event-meta { display:flex; flex-direction:column; align-items:flex-end; gap:4px; }
.event-type-icon { font-size:16px; }
.event-attendees { font-size:10px; color:#6b7280; }

/* ===== NEWS ===== */
.news-list { display:flex; flex-direction:column; gap:8px; max-height:420px; overflow-y:auto; }
.news-item {
  padding:12px 14px; border-radius:10px; border:1px solid #f3f4f6;
  cursor:pointer; transition:all 0.15s;
}
.news-item:hover,.news-item.expanded { background:#f8fafc; }
.news-top { display:flex; justify-content:space-between; align-items:flex-start; gap:8px; }
.news-tags { display:flex; gap:6px; align-items:center; margin-bottom:4px; }
.news-cat {
  font-size:10px; font-weight:700; padding:2px 8px; border-radius:10px;
  background:#f3f4f6; color:#6b7280;
}
.news-cat.hot { background:#fef2f2; color:#dc2626; }
.news-time { font-size:10px; color:#9ca3af; }
.news-title { font-size:13px; font-weight:600; line-height:1.4; }
.news-excerpt {
  margin-top:8px; font-size:12px; color:#6b7280; line-height:1.6;
  padding-top:8px; border-top:1px solid #f3f4f6; display:none;
}
.news-item.expanded .news-excerpt { display:block; }
.news-readmore { color:#004B87; font-weight:600; margin-left:4px; cursor:pointer; }

/* ===== FORUM ===== */
.kb-grid { display:flex; flex-direction:column; gap:0; }

/* Category list */
.forum-cat {
  display:flex; align-items:center; gap:14px; padding:14px 16px;
  border-bottom:1px solid #f3f4f6; cursor:pointer; transition:all 0.15s;
  border-radius:0;
}
.forum-cat:first-child { border-radius:10px 10px 0 0; }
.forum-cat:last-child { border-radius:0 0 10px 10px; border-bottom:none; }
.forum-cat:hover { background:#f0f7ff; }
.forum-cat-icon {
  width:44px; height:44px; border-radius:12px; background:#eef2ff;
  display:flex; align-items:center; justify-content:center;
  font-size:22px; flex-shrink:0;
}
.forum-cat-info { flex:1; min-width:0; }
.forum-cat-name { font-size:14px; font-weight:700; color:#1a1a2e; }
.forum-cat-desc { font-size:12px; color:#6b7280; margin-top:1px; }
.forum-cat-stats { text-align:center; flex-shrink:0; min-width:60px; }
.forum-cat-count { font-size:20px; font-weight:800; color:#004B87; }
.forum-cat-label { font-size:10px; color:#9ca3af; font-weight:600; text-transform:uppercase; }
.forum-cat-time { font-size:10px; color:#9ca3af; margin-top:4px; }

/* Breadcrumb */
.forum-breadcrumb {
  display:flex; align-items:center; gap:6px; padding:10px 0 14px;
  font-size:13px; color:#6b7280; flex-wrap:wrap;
}
.forum-breadcrumb a { color:#004B87; text-decoration:none; font-weight:600; }
.forum-breadcrumb a:hover { text-decoration:underline; }
.forum-bc-sep { color:#d1d5db; font-size:14px; }
.forum-breadcrumb span:last-child { color:#374151; font-weight:600; }

/* Post list */
.forum-post-list { border:1px solid #f3f4f6; border-radius:12px; overflow:hidden; }
.forum-post-row {
  display:flex; align-items:center; gap:12px; padding:12px 16px;
  border-bottom:1px solid #f3f4f6; cursor:pointer; transition:all 0.15s;
}
.forum-post-row:last-child { border-bottom:none; }
.forum-post-row:hover { background:#f8fafc; }
.forum-post-row.pinned { background:#fffbeb; border-left:3px solid #FECC02; }
.forum-post-avatar {
  width:36px; height:36px; border-radius:50%; flex-shrink:0;
  background:#2d7a4f; color:white; display:flex; align-items:center;
  justify-content:center; font-size:13px; font-weight:800;
  font-family:'DM Sans',system-ui,sans-serif;
}
.forum-post-avatar.op { width:44px; height:44px; font-size:16px; background:#004B87; }
.forum-post-avatar.reply { width:32px; height:32px; font-size:12px; background:#64748b; }
.forum-post-info { flex:1; min-width:0; }
.forum-post-title {
  font-size:14px; font-weight:600; color:#1a1a2e;
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.forum-post-meta { font-size:11px; color:#9ca3af; margin-top:2px; }
.forum-pin-badge {
  display:inline-block; background:#FECC02; color:#92400e;
  font-size:9px; font-weight:800; padding:1px 6px; border-radius:4px;
  letter-spacing:0.5px; vertical-align:middle;
}
.forum-post-stats { display:flex; gap:12px; flex-shrink:0; }
.forum-stat-box { text-align:center; min-width:36px; }
.forum-stat-num { font-size:15px; font-weight:800; color:#374151; }
.forum-stat-lbl { font-size:9px; color:#9ca3af; text-transform:uppercase; font-weight:600; }

/* Thread view */
.forum-thread-op {
  background:white; border:1px solid #e5e7eb; border-radius:14px;
  padding:20px 24px; margin-bottom:16px;
}
.forum-thread-header { display:flex; align-items:center; gap:12px; margin-bottom:14px; }
.forum-thread-author { font-size:14px; font-weight:700; color:#1a1a2e; }
.forum-thread-date { font-size:12px; color:#9ca3af; }
.forum-thread-title { font-size:18px; font-weight:800; color:#1a1a2e; margin-bottom:12px; }
.forum-thread-content {
  font-size:14px; line-height:1.7; color:#374151;
  padding:16px 0 0; border-top:1px solid #f3f4f6;
}

/* Replies */
.forum-replies-header {
  font-size:13px; font-weight:700; color:#6b7280;
  text-transform:uppercase; letter-spacing:0.5px;
  padding:8px 0 12px;
}
.forum-reply {
  display:flex; gap:12px; margin-bottom:0;
}
.forum-reply-left {
  display:flex; flex-direction:column; align-items:center; flex-shrink:0;
}
.forum-reply-line {
  width:2px; flex:1; background:#e5e7eb; margin-top:6px; border-radius:1px;
}
.forum-reply-body {
  flex:1; min-width:0; padding-bottom:16px; border-bottom:1px solid #f3f4f6;
  margin-bottom:12px;
}
.forum-reply-meta { font-size:12px; color:#9ca3af; margin-bottom:6px; }
.forum-reply-meta strong { color:#374151; }
.forum-reply-content { font-size:14px; line-height:1.6; color:#374151; }

/* Reply form */
.forum-reply-form {
  margin-top:20px; padding:16px 20px; background:#f8f7f4;
  border-radius:14px; border:1px solid #e5e7eb;
}
.forum-reply-form-header { font-size:14px; font-weight:700; color:#1a1a2e; margin-bottom:10px; }

/* Forum form elements */
.forum-textarea {
  width:100%; padding:12px 14px; border:1.5px solid #e5e7eb; border-radius:10px;
  font-size:14px; font-family:inherit; color:#1a1a2e; background:white;
  resize:vertical; min-height:80px; transition:border-color 0.15s;
}
.forum-textarea:focus { outline:none; border-color:#004B87; box-shadow:0 0 0 3px rgba(0,75,135,0.1); }
.forum-input {
  width:100%; padding:10px 14px; border:1.5px solid #e5e7eb; border-radius:10px;
  font-size:14px; font-family:inherit; color:#1a1a2e; background:white;
}
.forum-input:focus { outline:none; border-color:#004B87; box-shadow:0 0 0 3px rgba(0,75,135,0.1); }
.forum-select {
  width:100%; padding:10px 14px; border:1.5px solid #e5e7eb; border-radius:10px;
  font-size:14px; font-family:inherit; color:#1a1a2e; background:white;
}
.forum-select:focus { outline:none; border-color:#004B87; }
.forum-submit-btn {
  padding:10px 24px; border:none; border-radius:10px;
  background:#004B87; color:white; font-size:14px; font-weight:700;
  cursor:pointer; font-family:inherit; transition:all 0.15s; margin-top:10px;
}
.forum-submit-btn:hover { background:#003d6e; transform:translateY(-1px); }
.forum-form-actions { display:flex; gap:10px; margin-top:4px; align-items:center; }
.forum-new-btn-wrap { padding:16px 0 0; text-align:center; }
.forum-new-btn {
  padding:10px 28px; border:2px dashed #004B87; border-radius:12px;
  background:rgba(0,75,135,0.04); color:#004B87; font-size:14px; font-weight:700;
  cursor:pointer; font-family:inherit; transition:all 0.15s;
}
.forum-new-btn:hover { background:#004B87; color:white; border-style:solid; }

/* New post form */
.forum-new-post-form {
  background:white; border:1px solid #e5e7eb; border-radius:14px; padding:24px;
}

/* Empty & messages */
.forum-empty { text-align:center; padding:40px 20px; color:#9ca3af; font-size:14px; }
.forum-locked-msg {
  text-align:center; padding:16px; margin-top:16px;
  background:#fef2f2; border-radius:10px; color:#dc2626;
  font-size:13px; font-weight:600;
}
.forum-login-msg {
  text-align:center; padding:16px; margin-top:16px;
  background:#eef2ff; border-radius:10px; color:#4b5563;
  font-size:13px;
}
.forum-login-msg a { color:#004B87; font-weight:700; }

@media (max-width:640px) {
  .forum-post-stats { display:none; }
  .forum-cat-stats { display:none; }
  .forum-thread-op { padding:14px 16px; }
}

/* ===== DOCUMENTS ===== */
.doc-list { display:flex; flex-direction:column; gap:6px; }
.doc-item {
  display:flex; align-items:center; gap:12px; padding:10px 12px;
  border-radius:10px; border:1px solid #f3f4f6; cursor:pointer;
  transition:all 0.15s;
}
.doc-item:hover { background:#f8fafc; }
.doc-icon-box {
  width:40px; height:40px; border-radius:8px; background:#eef2ff;
  display:flex; align-items:center; justify-content:center;
  font-size:20px; flex-shrink:0;
}
.doc-info { flex:1; min-width:0; }
.doc-title { font-size:13px; font-weight:600; }
.doc-meta { font-size:11px; color:#6b7280; }
.doc-right { text-align:right; }
.doc-downloads { font-size:11px; color:#6b7280; }
.doc-action { font-size:11px; font-weight:600; color:#004B87; margin-top:2px; }

/* ===== FLYGDEALS ===== */
.flygdeals-section {
  background:linear-gradient(135deg,#004B87 0%,#0369a1 50%,#0d9488 100%);
  border-radius:14px; padding:40px 32px; margin-bottom:24px;
  color:white; position:relative; overflow:hidden;
}
.flygdeals-section::before {
  content:''; position:absolute; inset:0; opacity:0.05;
  background-image:radial-gradient(circle,white 1px,transparent 1px);
  background-size:32px 32px;
}
.flygdeals-inner { position:relative; z-index:1; max-width:900px; margin:0 auto; }
.flygdeals-header { text-align:center; margin-bottom:36px; }
.flygdeals-header h2 {
  font-family:'Playfair Display',serif; font-size:clamp(22px,3.5vw,30px);
  font-weight:800; margin-bottom:12px; line-height:1.3; letter-spacing:-0.5px;
}
.flygdeals-desc {
  font-size:15px; opacity:0.85; line-height:1.7; max-width:600px; margin:0 auto;
}
.flygdeals-steps {
  display:flex; align-items:flex-start; justify-content:center; gap:0;
  margin-bottom:28px;
}
.fd-step {
  flex:1; text-align:center; padding:0 12px; max-width:200px;
}
.fd-icon {
  font-size:36px; margin-bottom:10px;
  width:64px; height:64px; border-radius:16px;
  background:rgba(255,255,255,0.12); display:flex; align-items:center;
  justify-content:center; margin:0 auto 10px;
}
.fd-step h3 {
  font-size:14px; font-weight:700; margin-bottom:6px;
}
.fd-step p {
  font-size:12px; opacity:0.75; line-height:1.5;
}
.fd-arrow {
  font-size:20px; color:rgba(255,255,255,0.3); padding-top:28px;
  flex-shrink:0;
}
.fd-subtitle {
  text-align:center; font-size:11px; text-transform:uppercase;
  letter-spacing:2px; opacity:0.4; font-weight:700; margin-bottom:20px;
}
.fd-social-proof {
  text-align:center; font-size:14px; margin-bottom:16px;
  color:rgba(255,255,255,0.8);
}
.fd-social-proof strong {
  color:#FECC02; font-weight:800; font-size:16px;
}
.fd-cta {
  display:flex; gap:8px; max-width:420px; margin:0 auto;
}
.fd-email {
  flex:1; padding:12px 16px; border-radius:10px; border:2px solid rgba(255,255,255,0.2);
  background:rgba(255,255,255,0.1); color:white; font-size:14px;
  font-family:inherit; outline:none; transition:border-color 0.15s;
}
.fd-email::placeholder { color:rgba(255,255,255,0.4); }
.fd-email:focus { border-color:#FECC02; }
.fd-btn {
  padding:12px 24px; border-radius:10px; border:none;
  background:#FECC02; color:#004B87; font-size:14px; font-weight:700;
  cursor:pointer; font-family:inherit; white-space:nowrap;
  transition:all 0.15s;
}
.fd-btn:hover { background:#ffd633; transform:translateY(-1px); }

@media (max-width:640px) {
  .flygdeals-section { padding:28px 16px; }
  .flygdeals-steps { flex-direction:column; align-items:center; gap:4px; }
  .fd-arrow { transform:rotate(90deg); padding:0; }
  .fd-step { max-width:100%; }
  .fd-cta { flex-direction:column; }
}

/* ===== HERO MAP ===== */
.hero-map-section {
  position:relative; width:100%; height:65vh; min-height:400px; max-height:600px;
  overflow:hidden;
}
.hero-maplibre {
  position:absolute; top:0; left:0; width:100%; height:100%;
}
.hero-overlay-box {
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  z-index:2; text-align:center; pointer-events:none;
  background:rgba(0,75,135,0.75); backdrop-filter:blur(8px);
  padding:28px 40px 24px; border-radius:20px;
  border:1px solid rgba(255,255,255,0.15);
  max-width:520px; width:90%;
}
.hero-overlay-box h1 {
  font-family:'DM Sans',system-ui,sans-serif; font-size:clamp(20px,3.5vw,30px);
  font-weight:800; color:#fff; line-height:1.2; margin-bottom:4px;
}
.hero-overlay-box .gold { color:#FECC02; }
.hero-overlay-box p {
  font-size:14px; color:rgba(255,255,255,0.8); margin-bottom:14px;
}
.hero-overlay-box .hero-stats {
  display:flex; justify-content:center; gap:24px;
}
.hero-overlay-box .stat { text-align:center; }
.hero-overlay-box .stat-val {
  font-size:22px; font-weight:800; color:#FECC02;
}
.hero-overlay-box .stat-label {
  font-size:10px; color:rgba(255,255,255,0.6); text-transform:uppercase; letter-spacing:0.5px;
}
.hero-view-toggle {
  position:absolute; bottom:16px; left:50%; transform:translateX(-50%);
  z-index:2; display:flex; gap:6px;
  background:rgba(255,255,255,0.92); backdrop-filter:blur(8px);
  padding:6px 10px; border-radius:10px;
  box-shadow:0 4px 20px rgba(0,0,0,0.15);
}

/* View toggle buttons */
.view-toggle-btn {
  padding:8px 18px; border:2px solid #e5e2dc; border-radius:8px;
  background:#fff; color:#6b7280; font-size:13px; font-weight:600;
  cursor:pointer; font-family:inherit; transition:all 0.15s;
}
.view-toggle-btn.active {
  background:#004B87; color:#fff; border-color:#004B87;
}
.view-toggle-btn:hover:not(.active) {
  border-color:#004B87; color:#004B87;
}

/* ===== MAP SIDEBAR ===== */
.map-sidebar {
  position:absolute; top:0; left:0; bottom:0; z-index:3;
  width:320px; max-height:100%; background:rgba(15,23,42,0.92);
  backdrop-filter:blur(12px); border-right:1px solid rgba(255,255,255,0.08);
  display:flex; flex-direction:column; overflow:hidden;
}
.sb-search {
  padding:12px; display:flex; align-items:center; gap:8px;
  border-bottom:1px solid rgba(255,255,255,0.08);
  background:rgba(0,0,0,0.2);
}
.sb-search-icon { font-size:14px; color:rgba(255,255,255,0.4); flex-shrink:0; }
.sb-search-input {
  flex:1; background:none; border:none; outline:none;
  color:white; font-size:14px; font-family:inherit;
}
.sb-search-input::placeholder { color:rgba(255,255,255,0.35); }
.sb-search-clear {
  background:none; border:none; color:rgba(255,255,255,0.4);
  font-size:18px; cursor:pointer; padding:0 4px; line-height:1;
}
.sb-search-clear:hover { color:white; }
.sb-stats {
  padding:8px 12px; font-size:11px; color:rgba(255,255,255,0.45);
  border-bottom:1px solid rgba(255,255,255,0.06);
  display:flex; gap:12px;
}
.sb-stats span { display:flex; align-items:center; gap:4px; }
.sb-stats .sb-dot { width:6px; height:6px; border-radius:50%; display:inline-block; }
.sb-list {
  flex:1; overflow-y:auto; overflow-x:hidden;
  scrollbar-width:thin; scrollbar-color:rgba(255,255,255,0.1) transparent;
}
.sb-list::-webkit-scrollbar { width:4px; }
.sb-list::-webkit-scrollbar-thumb { background:rgba(255,255,255,0.1); border-radius:4px; }
.sb-group-header {
  padding:8px 12px 4px; font-size:10px; font-weight:700;
  color:rgba(255,255,255,0.35); text-transform:uppercase; letter-spacing:1px;
  position:sticky; top:0; background:rgba(15,23,42,0.95); z-index:1;
}
.sb-item {
  display:flex; align-items:center; gap:10px;
  padding:8px 12px; cursor:pointer; transition:background 0.1s;
  border-bottom:1px solid rgba(255,255,255,0.03);
}
.sb-item:hover { background:rgba(255,255,255,0.06); }
.sb-item.highlighted { background:rgba(254,204,2,0.1); }
.sb-item-avatar {
  width:32px; height:32px; border-radius:50%; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  font-size:12px; font-weight:800; color:white;
  font-family:'DM Sans',system-ui,sans-serif;
}
.sb-item-avatar.member { background:#2d7a4f; }
.sb-item-avatar.poi { background:white; border:2px solid; font-size:15px; }
.sb-item-avatar img { width:100%; height:100%; border-radius:50%; object-fit:cover; }
.sb-item-info { flex:1; min-width:0; }
.sb-item-name {
  font-size:13px; font-weight:600; color:rgba(255,255,255,0.9);
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.sb-item-sub {
  font-size:11px; color:rgba(255,255,255,0.35);
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.sb-item-dist {
  font-size:10px; color:rgba(255,255,255,0.25); white-space:nowrap; flex-shrink:0;
}
.sb-item-online {
  width:7px; height:7px; border-radius:50%; background:#22c55e;
  flex-shrink:0; box-shadow:0 0 4px rgba(34,197,94,0.6);
}
.sb-empty {
  padding:24px 16px; text-align:center; color:rgba(255,255,255,0.3); font-size:13px;
}
@media (max-width:640px) {
  .map-sidebar { width:260px; }
}

/* ===== DETAIL PANEL ===== */
.detail-panel {
  position:absolute; top:0; right:0; bottom:0; z-index:5;
  width:400px; max-height:100%; background:rgba(255,255,255,0.97);
  backdrop-filter:blur(16px); border-left:1px solid rgba(0,0,0,0.08);
  box-shadow:-8px 0 40px rgba(0,0,0,0.15);
  overflow-y:auto; overflow-x:hidden;
  animation:dpSlideIn 0.3s ease;
}
@keyframes dpSlideIn {
  from { transform:translateX(100%); opacity:0; }
  to { transform:translateX(0); opacity:1; }
}
.dp-close {
  position:sticky; top:12px; float:right; margin:12px 12px 0 0;
  width:36px; height:36px; border-radius:50%; border:none;
  background:rgba(0,0,0,0.06); color:#374151; font-size:22px;
  cursor:pointer; display:flex; align-items:center; justify-content:center;
  z-index:2; transition:all 0.15s;
}
.dp-close:hover { background:rgba(0,0,0,0.12); color:#dc2626; }

.dp-hero {
  position:relative; padding:24px 24px 16px; text-align:center;
  background:linear-gradient(135deg, #004B87 0%, #0369a1 100%);
  color:white; margin-bottom:0;
}
.dp-hero-avatar {
  width:80px; height:80px; border-radius:50%; margin:0 auto 12px;
  display:flex; align-items:center; justify-content:center;
  font-size:28px; font-weight:800; font-family:'DM Sans',system-ui,sans-serif;
  border:3px solid rgba(255,255,255,0.3);
}
.dp-hero-avatar.member-av { background:#2d7a4f; color:white; }
.dp-hero-avatar.poi-av { background:white; font-size:36px; }
.dp-hero-avatar img { width:100%; height:100%; border-radius:50%; object-fit:cover; }
.dp-hero-name { font-size:22px; font-weight:800; margin-bottom:2px; }
.dp-hero-sub { font-size:13px; opacity:0.7; }
.dp-hero-status {
  display:inline-flex; align-items:center; gap:5px; margin-top:8px;
  padding:4px 12px; border-radius:20px; font-size:12px; font-weight:600;
}
.dp-hero-status.online { background:rgba(34,197,94,0.2); color:#4ade80; }
.dp-hero-status.offline { background:rgba(255,255,255,0.1); color:rgba(255,255,255,0.6); }
.dp-hero-status::before {
  content:''; width:7px; height:7px; border-radius:50%;
}
.dp-hero-status.online::before { background:#4ade80; }
.dp-hero-status.offline::before { background:rgba(255,255,255,0.3); }

.dp-body { padding:20px 24px; }

.dp-section { margin-bottom:20px; }
.dp-section-title {
  font-size:11px; font-weight:700; text-transform:uppercase;
  letter-spacing:1px; color:#9ca3af; margin-bottom:8px;
}

.dp-bio {
  padding:12px 16px; background:#fefce8; border-left:3px solid #FECC02;
  border-radius:0 10px 10px 0; font-size:14px; color:#78716c;
  font-style:italic; line-height:1.6;
}

.dp-info-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:8px;
}
.dp-info-item {
  background:#f8f7f4; border-radius:10px; padding:10px 14px;
}
.dp-info-label { font-size:10px; color:#9ca3af; font-weight:600; text-transform:uppercase; letter-spacing:0.5px; }
.dp-info-value { font-size:14px; font-weight:600; color:#1a1a2e; margin-top:2px; }
.dp-info-value a { color:#004B87; text-decoration:none; }
.dp-info-value a:hover { text-decoration:underline; }

.dp-photos {
  display:grid; grid-template-columns:1fr 1fr 1fr; gap:6px;
}
.dp-photo {
  aspect-ratio:1; border-radius:10px; overflow:hidden; background:#f1f5f9;
  display:flex; align-items:center; justify-content:center;
  color:#cbd5e1; font-size:24px; cursor:pointer;
}
.dp-photo img { width:100%; height:100%; object-fit:cover; }
.dp-photo.add {
  border:2px dashed #e5e7eb; font-size:28px; color:#d1d5db; transition:all 0.15s;
}
.dp-photo.add:hover { border-color:#004B87; color:#004B87; }

.dp-map-mini {
  width:100%; height:140px; border-radius:10px; overflow:hidden;
  border:1px solid #e5e7eb;
}

.dp-actions {
  display:flex; gap:8px; padding:16px 24px; border-top:1px solid #f3f4f6;
}
.dp-btn {
  flex:1; padding:10px 16px; border-radius:10px; border:none;
  font-size:13px; font-weight:600; cursor:pointer; font-family:inherit;
  transition:all 0.15s; text-align:center;
}
.dp-btn-primary { background:#004B87; color:white; }
.dp-btn-primary:hover { background:#003d6e; }
.dp-btn-outline { background:white; color:#004B87; border:1.5px solid #e5e2dc; }
.dp-btn-outline:hover { border-color:#004B87; }

@media (max-width:900px) {
  .detail-panel { width:100%; }
}
@media (max-width:640px) {
  .detail-panel { width:100%; }
}

/* ===== ADMIN CONTROLS ===== */
.btn-save-view {
  padding:6px 14px; border:2px solid #22c55e; border-radius:8px;
  background:rgba(34,197,94,0.1); color:#22c55e; font-size:12px; font-weight:700;
  cursor:pointer; font-family:inherit; transition:all 0.15s;
  white-space:nowrap;
}
.btn-save-view:hover { background:#22c55e; color:white; }
.btn-save-view.saving { background:#ca8a04; border-color:#ca8a04; color:white; pointer-events:none; }
.btn-save-view.saved { background:#22c55e; border-color:#22c55e; color:white; }

.btn-admin {
  padding:6px 12px; border-radius:8px;
  background:rgba(254,204,2,0.1); color:#FECC02; font-size:12px; font-weight:700;
  text-decoration:none; border:1px solid rgba(254,204,2,0.3); transition:all 0.15s;
}
.btn-admin:hover { background:#FECC02; color:#004B87; }

.save-toast {
  position:fixed; top:70px; right:24px; z-index:200;
  padding:10px 20px; border-radius:10px; font-size:13px; font-weight:600;
  box-shadow:0 4px 20px rgba(0,0,0,0.2); transition:all 0.3s;
  font-family:'DM Sans',system-ui,sans-serif;
}
.save-toast.success { background:#22c55e; color:white; }
.save-toast.error { background:#ef4444; color:white; }

/* ===== MEMBER PINS ===== */
.member-pin {
  width:14px; height:14px; border-radius:50%;
  background:#FECC02; border:2px solid #004B87;
  box-shadow:0 2px 6px rgba(0,0,0,0.3);
  cursor:pointer; transition:transform 0.15s;
}
.member-pin.online {
  background:#22c55e; border-color:#fff;
  box-shadow:0 0 8px rgba(34,197,94,0.6);
}
.member-pin:hover {
  transform:scale(1.5);
  z-index:10;
}

/* POI pins */
.poi-pin {
  width:28px; height:28px; border-radius:50%;
  background:white; border:2px solid #334155;
  display:flex; align-items:center; justify-content:center;
  font-size:15px; cursor:pointer; transition:transform 0.15s;
  box-shadow:0 2px 8px rgba(0,0,0,0.25);
}
.poi-pin:hover { transform:scale(1.3); z-index:10; }
.poi-police { border-color:#1d4ed8; }
.poi-hospital { border-color:#dc2626; color:#dc2626; font-size:20px; font-weight:900; }
.poi-train { border-color:#7c3aed; }
.poi-airport { border-color:#0891b2; }
.poi-restaurant { border-color:#ea580c; }
.poi-bar { border-color:#d946ef; }
.poi-shop { border-color:#059669; }
.poi-hotel { border-color:#b45309; }

/* POI filter buttons */
.poi-filters {
  position:absolute; top:12px; left:340px; z-index:4;
  display:flex; flex-wrap:wrap; gap:4px;
}
.poi-filter-btn {
  padding:5px 10px; border-radius:20px; border:2px solid var(--poi-color, #6b7280);
  background:rgba(255,255,255,0.9); backdrop-filter:blur(4px);
  color:var(--poi-color, #6b7280); font-size:11px; font-weight:700;
  cursor:pointer; font-family:inherit; transition:all 0.15s;
  display:flex; align-items:center; gap:4px;
}
.poi-filter-btn.active {
  background:var(--poi-color, #6b7280); color:white;
}
.poi-filter-btn:not(.active) { opacity:0.5; }
.poi-count {
  background:rgba(0,0,0,0.1); border-radius:10px;
  padding:0 5px; font-size:10px; min-width:16px; text-align:center;
}

/* Pin hover popup */
.pin-popup-wrap .maplibregl-popup-content {
  padding:0 !important; background:transparent !important;
  box-shadow:none !important; border-radius:0 !important;
}
.pin-popup-wrap .maplibregl-popup-tip {
  border-top-color:white !important;
}
.pin-popup {
  background:white; border-radius:14px; padding:14px 16px;
  box-shadow:0 6px 24px rgba(0,0,0,0.15); min-width:220px; max-width:280px;
}
.pp-header { display:flex; align-items:center; gap:12px; }
.pp-avatar {
  width:44px; height:44px; border-radius:50%;
  background:#2d7a4f; color:white;
  display:flex; align-items:center; justify-content:center;
  font-size:16px; font-weight:800; font-family:'DM Sans',system-ui,sans-serif;
  flex-shrink:0;
}
.pp-avatar-img { object-fit:cover; border:2px solid #2d7a4f; padding:0; }
.pp-info { flex:1; min-width:0; }
.pp-name { font-size:15px; font-weight:700; color:#1a1a2e; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.pp-city { font-size:12px; color:#6b7280; }
.pp-bio {
  margin-top:8px; padding:6px 10px; border-left:3px solid #FECC02;
  background:#fefce8; border-radius:0 6px 6px 0;
  font-size:12px; color:#78716c; font-style:italic;
}
.pp-footer {
  margin-top:8px; display:flex; align-items:center; gap:8px; font-size:11px;
}
.pp-status { display:flex; align-items:center; gap:4px; font-weight:600; }
.pp-status::before {
  content:''; width:7px; height:7px; border-radius:50%; display:inline-block;
}
.pp-status.online { color:#22c55e; }
.pp-status.online::before { background:#22c55e; }
.pp-status.offline { color:#9ca3af; }
.pp-status.offline::before { background:#d1d5db; }
.pp-since { color:#9ca3af; }
.pp-since::before { content:'·'; margin-right:4px; }

/* Member modal */
.member-modal {
  position:fixed; inset:0; z-index:300;
  background:rgba(0,0,0,0.5); backdrop-filter:blur(4px);
  display:flex; align-items:center; justify-content:center;
}
.mm-content {
  background:white; border-radius:16px; padding:24px;
  width:360px; max-width:90%; box-shadow:0 20px 60px rgba(0,0,0,0.3);
}
.mm-header { display:flex; align-items:center; gap:14px; }
.mm-avatar {
  width:60px; height:60px; border-radius:50%;
  object-fit:cover; border:3px solid #004B87;
}
.mm-avatar-initials {
  background:#2d7a4f; color:white; display:flex; align-items:center; justify-content:center;
  font-size:22px; font-weight:800; font-family:'DM Sans',system-ui,sans-serif;
  border:none;
}
.mm-info { flex:1; }
.mm-name { font-size:18px; font-weight:700; color:#1a1a2e; }
.mm-city { font-size:13px; color:#6b7280; }
.mm-online {
  font-size:11px; font-weight:700; color:#22c55e;
  display:flex; align-items:center; gap:4px;
}
.mm-online::before {
  content:''; width:6px; height:6px; border-radius:50%;
  background:#22c55e; display:inline-block;
}
.mm-close {
  width:32px; height:32px; border-radius:50%; border:none;
  background:#f1f5f9; color:#6b7280; font-size:20px;
  cursor:pointer; display:flex; align-items:center; justify-content:center;
}
.mm-close:hover { background:#e5e7eb; }
.mm-bio { margin-top:14px; font-size:14px; color:#374151; line-height:1.6; }
.mm-since { margin-top:12px; font-size:12px; color:#9ca3af; }

/* ===== REGISTER MODAL ===== */
.reg-modal {
  position:fixed; inset:0; z-index:500;
  background:rgba(0,0,0,0.55); backdrop-filter:blur(4px);
  display:flex; align-items:center; justify-content:center;
  animation:fadeIn 0.2s ease;
}
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
.reg-box {
  position:relative; background:white; border-radius:20px; padding:0;
  width:480px; max-width:95vw; max-height:90vh; overflow-y:auto;
  box-shadow:0 24px 80px rgba(0,0,0,0.25);
  animation:regSlide 0.3s ease;
  z-index:501;
}
@keyframes regSlide { from { transform:translateY(30px); opacity:0; } to { transform:translateY(0); opacity:1; } }
.reg-close {
  position:absolute; top:16px; right:16px; width:32px; height:32px;
  border-radius:50%; border:none; background:rgba(0,0,0,0.06);
  color:#6b7280; font-size:20px; cursor:pointer; z-index:2;
  display:flex; align-items:center; justify-content:center;
}
.reg-close:hover { background:rgba(0,0,0,0.1); color:#dc2626; }
.reg-header {
  background:linear-gradient(135deg, #004B87 0%, #0369a1 100%);
  padding:28px 32px 20px; border-radius:20px 20px 0 0;
  color:white; text-align:center; position:relative;
}
.reg-flag {
  width:40px; height:28px; background:#004B87; border:2px solid #FECC02;
  border-radius:4px; position:relative; margin:0 auto 12px; overflow:hidden;
}
.reg-header h2 { font-size:22px; font-weight:800; margin-bottom:4px; }
.reg-header p { font-size:13px; opacity:0.75; }
.reg-box form { padding:24px 32px 28px; }
.reg-field { margin-bottom:14px; }
.reg-field label { display:block; font-size:12px; font-weight:600; color:#374151; margin-bottom:4px; }
.reg-field input, .reg-field select, .reg-field textarea {
  width:100%; padding:10px 14px; border:1.5px solid #e5e7eb; border-radius:10px;
  font-size:14px; font-family:inherit; color:#1a1a2e; background:white;
  transition:border-color 0.15s;
}
.reg-field input:focus, .reg-field select:focus, .reg-field textarea:focus {
  outline:none; border-color:#004B87; box-shadow:0 0 0 3px rgba(0,75,135,0.1);
}
.reg-field textarea { resize:vertical; min-height:60px; }
.reg-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.reg-msg {
  padding:10px 14px; border-radius:10px; font-size:13px; font-weight:600; margin-bottom:12px;
}
.reg-msg.error { background:#fef2f2; color:#dc2626; border:1px solid #fecaca; }
.reg-msg.success { background:#f0fdf4; color:#16a34a; border:1px solid #bbf7d0; }
.reg-submit {
  width:100%; padding:12px; border:none; border-radius:12px;
  background:#004B87; color:white; font-size:15px; font-weight:700;
  cursor:pointer; font-family:inherit; transition:all 0.15s;
}
.reg-submit:hover { background:#003d6e; transform:translateY(-1px); }
.reg-submit:disabled { background:#94a3b8; cursor:not-allowed; transform:none; }
.reg-footer {
  text-align:center; font-size:13px; color:#6b7280; margin-top:14px;
}
.reg-footer a { color:#004B87; font-weight:600; text-decoration:none; }
.reg-footer a:hover { text-decoration:underline; }
@media (max-width:640px) {
  .reg-row { grid-template-columns:1fr; }
  .reg-box form { padding:20px 20px 24px; }
  .reg-header { padding:20px 20px 16px; }
}

/* ===== FOOTER ===== */
.footer { max-width:1200px; margin:0 auto; padding:0 24px; }
.footer-inner {
  margin-top:8px; padding:24px 0; border-top:1px solid #e5e2dc;
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:16px;
}
.footer-left { display:flex; align-items:center; gap:12px; }
.footer-tagline { font-size:12px; color:#9ca3af; }
.footer-links { display:flex; gap:16px; font-size:12px; color:#6b7280; align-items:center; flex-wrap:wrap; }
.footer-links a { color:#6b7280; text-decoration:none; transition:color 0.15s; }
.footer-links a:hover { color:#004B87; }

/* ===== RESPONSIVE ===== */
@media (max-width:900px) {
  .two-col { grid-template-columns:1fr; }
  .hero-map-section { height:50vh; min-height:300px; }
  .hero-overlay-box { padding:20px 24px 18px; }
  .hero-overlay-box h1 { font-size:20px; }
  .hero-overlay-box .hero-stats { gap:16px; }
  .hero-overlay-box .stat-val { font-size:18px; }
}
@media (max-width:640px) {
  .nav-links,.nav-right { display:none; }
  .hamburger { display:block; }
  .navbar { padding:0 16px; }
  .hero { padding:24px 16px; }
  .main-content { padding:0 12px; }
  .region-bar { padding:0 12px; }
  .kb-grid { grid-template-columns:1fr; }
  .region-stats-grid { grid-template-columns:1fr; }
  .footer-inner { flex-direction:column; text-align:center; }
}

/* ===== SCROLLBAR ===== */
.event-list::-webkit-scrollbar,.news-list::-webkit-scrollbar { width:4px; }
.event-list::-webkit-scrollbar-thumb,.news-list::-webkit-scrollbar-thumb {
  background:#e5e2dc; border-radius:4px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(20px); }
  to { opacity:1; transform:translateY(0); }
}
.card { animation:fadeInUp 0.4s ease both; }
.two-col .card:nth-child(2) { animation-delay:0.1s; }
