/* ============================================================
   Society for the Welfare of WB FL & IML Licensees
   Master Stylesheet — Design Tokens & Base
   ============================================================ */

:root {
  --bg: #FFFFFF;
  --bg-soft: #FAFAF7;
  --text: #111111;
  --text-muted: #666666;
  --border: #ECECEC;
  --btn: #000000;
  --btn-text: #FFFFFF;
  --btn-hover: #1C1C1C;
  --gold: #C89A2B;
  --gold-soft: #F6EED8;
  --red: #8B1E24;

  --radius-sm: 10px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 2px rgba(17, 17, 17, 0.04);
  --shadow: 0 8px 24px rgba(17, 17, 17, 0.06);

  --container: 1200px;
  --gutter: 24px;

  --font: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;

  --t-fast: 160ms ease;
  --t: 240ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast);
}

a:hover {
  color: var(--gold);
}

h1, h2, h3, h4, h5 {
  font-family: var(--font);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 16px;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

p { margin: 0 0 16px; color: var(--text-muted); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-head.left { text-align: left; margin-left: 0; }

.section-head h2 { margin-bottom: 12px; }
.section-head p { color: var(--text-muted); font-size: 1.05rem; }

.divider-gold {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 14px auto 0;
}
.section-head.left .divider-gold { margin-left: 0; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 50px;
  padding: 0 26px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--btn);
  color: var(--btn-text);
}
.btn-primary:hover {
  background: var(--btn-hover);
  color: var(--btn-text);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--bg);
  color: var(--text);
  border-color: var(--border);
}
.btn-secondary:hover {
  border-color: var(--text);
  color: var(--text);
}

.btn-gold {
  background: var(--gold);
  color: #fff;
}
.btn-gold:hover { background: #b0851f; color: #fff; }

.btn-sm { height: 40px; padding: 0 18px; font-size: 0.88rem; }
.btn-lg { height: 56px; padding: 0 32px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: white;
  border-bottom: 1px solid transparent;
  transition: background var(--t), border-color var(--t), padding var(--t),
    box-shadow var(--t);
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--border);
  padding: 12px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 44px; width: auto; }
.nav-logo span {
  font-weight: 700; font-size: 0.98rem; letter-spacing: -0.01em;
  line-height: 1.15; max-width: 200px;
}
.nav-logo small { color: var(--text-muted); font-weight: 500; font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; }

.nav-menu {
  display: flex; align-items: center; gap: 6px;
  list-style: none; margin: 0; padding: 0;
}
.nav-menu a {
  display: inline-block;
  padding: 10px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
  position: relative;
}
.nav-menu a:hover { color: var(--gold); }
.nav-menu a.active { color: var(--gold); font-weight: 600; }
.nav-menu a.active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px; background: var(--gold); border-radius: 2px;
}

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-burger {
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  border-radius: 10px; border: 1px solid var(--border);
  background: #fff; cursor: pointer;
}
.nav-burger i { font-size: 1.2rem; }

@media (max-width: 1080px) {
  .nav-menu, .nav-cta .btn { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-inner { gap: 12px; }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 200;
  padding: 80px 24px 40px;
  transform: translateX(100%);
  transition: transform var(--t);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  position: absolute; top: 20px; right: 20px;
  width: 42px; height: 42px; border-radius: 10px;
  border: 1px solid var(--border); background: #fff; cursor: pointer;
}
.mobile-menu ul { list-style: none; padding: 0; margin: 0 0 30px; }
.mobile-menu li { border-bottom: 1px solid var(--border); }
.mobile-menu li a {
  display: block; padding: 18px 4px; font-size: 1.05rem; font-weight: 500;
}
.mobile-menu li a.active { color: var(--gold); }
.mobile-menu .btn { display: flex; margin-bottom: 12px; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding: 160px 0 96px;
  background: var(--bg-soft);
  overflow: hidden;
}
.hero-home {
  padding: 140px 0 80px;
  background:
    radial-gradient(1000px 500px at 20% -10%, rgba(200, 154, 43, 0.08), transparent 60%),
    radial-gradient(800px 400px at 100% 20%, rgba(139, 30, 36, 0.05), transparent 60%),
    #FFFFFF;
}
.hero-home .hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-home .hero-logo {
  width: 150px; height: auto; margin-bottom: 24px;
}
.hero-home h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }
.hero-home .lead { font-size: 1.1rem; max-width: 520px; color: var(--text-muted); }
.hero-features {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-top: 40px;
}
.hero-feature {
  text-align: center;
}
.hero-feature i {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--gold-soft); color: var(--gold); font-size: 1.2rem;
  margin-bottom: 10px;
}
.hero-feature span { font-size: 0.82rem; font-weight: 600; color: var(--text); }

.hero-home {
    position: relative;
    background: linear-gradient(
      rgba(255, 255, 255, 0.85),
      rgba(255, 255, 255, 1)
    ),
    url("https://etimg.etb2bimg.com/thumb/msid-123646725,imgsize-120726,width-1200,height=627,overlay-etgovernment,resizemode-75/news/governance/west-bengal-assembly-bans-armed-security-personnel-for-ministers-and-mlas.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.login-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.login-card {
  background: #fff;
  border: 3px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.login-card:hover {
  border-color: #d9d9d9;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.login-card.gold { border-color: rgba(200, 154, 43); }
.login-card .icon-wrap {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--gold-soft); color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 18px;
}
.login-card h3 { margin-bottom: 6px; }
.login-card p { font-size: 0.9rem; margin-bottom: 24px; }
.login-card .btn { width: 100%; }

/* Inner page hero */
.hero-inner {
  padding: 160px 0 80px;
  background:
    linear-gradient(0deg, rgba(17,17,17,0.75), rgba(17,17,17,0.75)),
    linear-gradient(135deg, #1a1a1a, #2a2320);
  color: #fff;
  position: relative;
}
.hero-inner h1 { color: #fff; }
.hero-inner .breadcrumb { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.hero-inner .breadcrumb a { color: rgba(255,255,255,0.7); }
.hero-inner .breadcrumb a:hover { color: var(--gold); }
.hero-inner .breadcrumb .sep { margin: 0 8px; opacity: 0.5; }
.hero-inner .breadcrumb .current { color: var(--gold); }
.hero-inner .divider-gold { margin: 14px 0 20px; }
.hero-inner p { color: rgba(255,255,255,0.75); max-width: 620px; font-size: 1.02rem; }

/* ============================================================
   Statistics
   ============================================================ */
.stats {
  background: var(--gold-soft);
  padding: 56px 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
}
.stat {
  display: flex; align-items: center; gap: 16px;
}
.stat-icon {
  width: 54px; height: 54px; border-radius: 50%;
  background: #fff; color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.stat-num { font-size: 2rem; font-weight: 700; letter-spacing: -0.02em; }
.stat-num small { font-size: 1.4rem; color: var(--gold); }
.stat-label { color: var(--text-muted); font-size: 0.92rem; }

/* ============================================================
   Cards / Grids
   ============================================================ */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--t);
}
.card:hover { border-color: #d9d9d9; transform: translateY(-2px); box-shadow: var(--shadow); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }

.feature-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  text-align: center; transition: all var(--t);
}
.feature-card:hover { border-color: #d9d9d9; transform: translateY(-3px); box-shadow: var(--shadow); }
.feature-card .icon-wrap {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--gold-soft); color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 16px;
}
.feature-card h4 { margin-bottom: 8px; }
.feature-card p { font-size: 0.92rem; margin: 0; }

.icon-left {
  display: flex; gap: 20px; align-items: flex-start;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px;
  transition: all var(--t);
}
.icon-left:hover { border-color: #d9d9d9; box-shadow: var(--shadow); }
.icon-left .icon-wrap {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--gold-soft); color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.icon-left h4 { margin: 0 0 6px; }
.icon-left p { margin: 0; font-size: 0.92rem; }

/* About preview */
.about-preview { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.about-preview img { border-radius: var(--radius-lg); border: 1px solid var(--border); aspect-ratio: 4/3; object-fit: cover; }

/* ============================================================
   Circulars / Blog cards
   ============================================================ */
.blog-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: all var(--t);
}
.blog-card:hover { border-color: #d9d9d9; transform: translateY(-3px); box-shadow: var(--shadow); }
.blog-card .thumb {
  aspect-ratio: 16/10; background: linear-gradient(135deg, #f4efdd, #efe3bf);
  display: flex; align-items: center; justify-content: center; color: var(--gold);
  font-size: 2rem;
}
.blog-card .body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card .meta { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 10px; display: flex; gap: 12px; }
.blog-card .badge { color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.blog-card h4 { margin-bottom: 10px; }
.blog-card p { flex: 1; font-size: 0.92rem; }
.blog-card .read-more { color: var(--text); font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; }
.blog-card .read-more:hover { color: var(--gold); }

/* ============================================================
   Events
   ============================================================ */
.event-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 26px; display: grid; grid-template-columns: 82px 1fr auto;
  gap: 20px; align-items: center; transition: all var(--t);
}
.event-card:hover { border-color: #d9d9d9; box-shadow: var(--shadow); }
.event-date {
  background: var(--gold-soft); border-radius: 12px; padding: 12px 8px; text-align: center;
}
.event-date .d { font-size: 1.6rem; font-weight: 700; color: var(--red); line-height: 1; }
.event-date .m { font-size: 0.72rem; letter-spacing: 0.14em; color: var(--gold); text-transform: uppercase; font-weight: 600; margin-top: 4px; }
.event-body h4 { margin: 0 0 6px; }
.event-body p { margin: 0; font-size: 0.9rem; }
.event-body .meta { font-size: 0.82rem; color: var(--text-muted); margin-top: 6px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   Gallery / Masonry
   ============================================================ */
.masonry {
  columns: 3 320px;
  column-gap: 20px;
}
.masonry-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    position: relative;
    cursor: pointer;
    height: 250px;
}
.masonry-item img {
    width: 100%;
    height: 100%;
    transition: transform var(--t);
    object-fit: cover;
}
.masonry-item:hover img { transform: scale(1.04); }
.masonry-item .cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 16px 18px; color: #fff;
  background: linear-gradient(0deg, rgba(0,0,0,0.7), transparent);
  font-weight: 600; font-size: 0.9rem;
}

.category-pills {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 36px;
}
.pill {
  border: 1px solid var(--border); background: #fff;
  padding: 8px 16px; border-radius: 999px; font-size: 0.88rem; font-weight: 500;
  cursor: pointer; transition: all var(--t);
}
.pill:hover { border-color: var(--text); }
.pill.active { background: var(--text); color: #fff; border-color: var(--text); }

/* ============================================================
   Search bar
   ============================================================ */
.searchbar {
  display: flex; gap: 12px; margin: 0 auto 36px; max-width: 640px;
}
.searchbar .input {
  flex: 1;
  height: 50px;
  padding: 0 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-family: var(--font); font-size: 0.95rem; color: var(--text);
  background: #fff;
  transition: border-color var(--t);
}
.searchbar .input:focus { outline: none; border-color: var(--text); }

/* ============================================================
   FAQ Accordion
   ============================================================ */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  margin-bottom: 12px; overflow: hidden; background: #fff; transition: all var(--t);
}
.faq-item.open { background: #FFFBF0; border-color: rgba(200, 154, 43, 0.4); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; cursor: pointer; font-weight: 600; font-size: 1rem;
}
.faq-q i {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--gold-soft); color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform var(--t);
}
.faq-item.open .faq-q i { background: var(--gold); color: #fff; }
.faq-a {
  max-height: 0; overflow: hidden; padding: 0 24px;
  transition: max-height var(--t), padding var(--t);
  color: var(--text-muted); font-size: 0.95rem;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 24px 22px; }

/* ============================================================
   Timeline
   ============================================================ */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: ""; position: absolute; left: 12px; top: 6px; bottom: 6px;
  width: 2px; background: var(--border);
}
.timeline-item { position: relative; padding-bottom: 32px; }
.timeline-item::before {
  content: ""; position: absolute; left: -26px; top: 6px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 0 4px var(--gold-soft);
}
.timeline-year { font-weight: 700; color: var(--red); font-size: 0.9rem; letter-spacing: 0.05em; }
.timeline h4 { margin: 4px 0 6px; }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  background: var(--gold-soft);
  border: 1px solid rgba(200, 154, 43, 0.25);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: grid; grid-template-columns: auto 1fr auto; gap: 26px; align-items: center;
}
.cta-band .icon-wrap {
  width: 64px; height: 64px; border-radius: 50%;
  background: #fff; color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
}
.cta-band h3 { margin: 0 0 4px; }
.cta-band p { margin: 0; font-size: 0.92rem; }

.cta-dark {
  background: #111;
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 60px;
  text-align: center;
}
.cta-dark h2 { color: #fff; }
.cta-dark p { color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto 28px; }

/* ============================================================
   Forms
   ============================================================ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field {
  position: relative;
}
.form-field label {
  display: block; font-size: 0.85rem; font-weight: 500;
  color: var(--text-muted); margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; height: 50px; padding: 0 16px;
  border: 1px solid var(--border); border-radius: var(--radius);
  font-family: var(--font); font-size: 0.95rem; color: var(--text);
  background: #fff; transition: border-color var(--t);
}
.form-field textarea { height: auto; min-height: 140px; padding: 14px 16px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { outline: none; border-color: var(--text); }
.form-check { display: flex; gap: 10px; align-items: flex-start; font-size: 0.88rem; color: var(--text-muted); }
.form-check a { color: var(--gold); }

/* ============================================================
   Contact info cards
   ============================================================ */
.contact-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.contact-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 22px; display: flex; gap: 14px; align-items: flex-start;
}
.contact-card .icon-wrap {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--gold-soft); color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.contact-card h4 { margin: 0 0 4px; font-size: 1rem; }
.contact-card p { margin: 0; font-size: 0.88rem; }

/* ============================================================
   Pagination
   ============================================================ */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 40px; }
.pagination a {
  width: 40px; height: 40px; border-radius: 10px;
  border: 1px solid var(--border); background: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 0.9rem;
}
.pagination a:hover { border-color: var(--text); }
.pagination a.active { background: var(--text); color: #fff; border-color: var(--text); }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: #0B0B0B;
  color: rgba(255,255,255,0.72);
  padding: 72px 0 0;
  margin-top: 60px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
}
.footer h5 {
  color: #fff; font-size: 0.95rem; margin-bottom: 20px; font-weight: 600;
  letter-spacing: 0.02em;
}
.footer-brand-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand-logo img { height: 44px; }
.footer-brand-logo span { color: #fff; font-weight: 700; font-size: 0.95rem; line-height: 1.2; }
.footer p { color: rgba(255,255,255,0.6); font-size: 0.88rem; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { color: rgba(255,255,255,0.72); font-size: 0.9rem; }
.footer ul li a:hover { color: var(--gold); }
.footer-contact li { display: flex; gap: 10px; font-size: 0.88rem; margin-bottom: 12px; }
.footer-contact li i { color: var(--gold); margin-top: 3px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.72); transition: all var(--t);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.footer-links-cta { display: flex; flex-direction: column; gap: 12px; }
.footer-links-cta .btn { justify-content: space-between; padding: 0 18px; }
.footer-links-cta .btn-gold { background: var(--gold); color: #fff; }
.footer-links-cta .btn-outline {
  background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.25);
}
.footer-links-cta .btn-outline:hover { border-color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}
.footer-bottom a { color: rgba(255,255,255,0.72); margin-left: 18px; }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   Animations
   ============================================================ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22,0.61,0.36,1); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   Utilities
   ============================================================ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-4 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.map-placeholder {
    background: #f4f4f2;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    height: 250px;
    overflow: hidden;
}
.qr-placeholder {
  aspect-ratio: 1; background:
    repeating-linear-gradient(45deg, #111 0 10px, #fff 10px 20px);
  border-radius: 12px; width: 180px; margin: 0 auto;
}

.note-box {
  background: var(--gold-soft);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.note-box h4 { margin: 0 0 6px; color: var(--red); }
.note-box p { margin: 0; color: var(--text); font-size: 0.92rem; }

.empty-state {
  text-align: center; padding: 60px 20px; color: var(--text-muted);
}
.empty-state i { font-size: 3rem; color: var(--gold); margin-bottom: 12px; }
