/* =====================================================
   FFYR Human Rights Council — Public site stylesheet
   Palette: Navy #1a1f4e · Red #c41e3a · Gold #d4a528
   ===================================================== */

:root{
  --ffyr-primary:#1a1f4e;
  --ffyr-primary-dark:#0f1235;
  --ffyr-primary-light:#2a2f5e;
  --ffyr-secondary:#c41e3a;
  --ffyr-secondary-dark:#9c1730;
  --ffyr-accent:#d4a528;
  --ffyr-accent-dark:#b88c1f;
  --ffyr-text:#333333;
  --ffyr-muted:#6b7280;
  --ffyr-bg:#f8f9fa;
  --ffyr-border:#e5e7eb;
  --ffyr-success:#16a34a;
  --ffyr-danger:#c41e3a;
  --ffyr-radius:8px;
  --ffyr-shadow-sm:0 2px 6px rgba(26,31,78,.06);
  --ffyr-shadow:0 6px 18px rgba(26,31,78,.10);
  --ffyr-shadow-lg:0 14px 30px rgba(26,31,78,.16);
  --ffyr-transition:all .25s ease;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  font-family:'Poppins','Segoe UI','Helvetica Neue',Arial,sans-serif;
  font-weight:400;
  color:var(--ffyr-text);
  background:#fff;
  line-height:1.65;
  margin:0;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4,h5,h6{font-weight:700;color:var(--ffyr-primary);letter-spacing:-.01em;}
a{color:var(--ffyr-primary);text-decoration:none;transition:var(--ffyr-transition);}
a:hover{color:var(--ffyr-accent);}
img{max-width:100%;height:auto;}

/* Bootstrap button overrides */
.btn{border-radius:var(--ffyr-radius);font-weight:600;letter-spacing:.01em;transition:var(--ffyr-transition);}
.btn-primary{
  --bs-btn-bg:var(--ffyr-primary);--bs-btn-border-color:var(--ffyr-primary);
  --bs-btn-hover-bg:var(--ffyr-primary-dark);--bs-btn-hover-border-color:var(--ffyr-primary-dark);
  --bs-btn-active-bg:var(--ffyr-primary-dark);--bs-btn-active-border-color:var(--ffyr-primary-dark);
}
.btn-danger{
  --bs-btn-bg:var(--ffyr-secondary);--bs-btn-border-color:var(--ffyr-secondary);
  --bs-btn-hover-bg:var(--ffyr-secondary-dark);--bs-btn-hover-border-color:var(--ffyr-secondary-dark);
  --bs-btn-active-bg:var(--ffyr-secondary-dark);--bs-btn-active-border-color:var(--ffyr-secondary-dark);
}
.btn-warning{
  --bs-btn-bg:var(--ffyr-accent);--bs-btn-border-color:var(--ffyr-accent);--bs-btn-color:#1f1f1f;
  --bs-btn-hover-bg:var(--ffyr-accent-dark);--bs-btn-hover-border-color:var(--ffyr-accent-dark);--bs-btn-hover-color:#1f1f1f;
}
.btn-outline-primary{
  --bs-btn-color:var(--ffyr-primary);--bs-btn-border-color:var(--ffyr-primary);
  --bs-btn-hover-bg:var(--ffyr-primary);--bs-btn-hover-border-color:var(--ffyr-primary);
}
.text-primary{color:var(--ffyr-primary) !important;}
.bg-primary{background:var(--ffyr-primary) !important;}

/* =================== Demo banner =================== */
.demo-banner{
  background:linear-gradient(90deg,#c41e3a,#e74c3c);
  color:#ffffff;
  padding:8px 0;
  font-size:13px;
  text-align:center;
  letter-spacing:.5px;
  position:relative;
  z-index:1100;
}
.demo-banner strong{color:#ffd700;}
.demo-banner i{color:#ffd700;}

/* =================== Header / brand strip =================== */
.site-header{position:sticky;top:0;z-index:1030;background:transparent;}
.brand-strip{
  background-color:#000000 !important;
  color:#ffffff;
  text-align:center;
  padding:8px 0;
  font-size:14px;
  letter-spacing:1px;
  text-transform:uppercase;
  font-weight:500;
  width:100%;
  display:block;
}

/* =================== Navbar =================== */
.navbar,
.navbar.navbar-expand-lg{
  background-color:#1a1f4e !important;
  padding:10px 0;
  box-shadow:0 2px 10px rgba(0,0,0,.1);
}
.navbar .navbar-toggler{border-color:rgba(255,255,255,.4);}
.navbar .navbar-toggler-icon{filter:invert(1);}
.navbar-brand{display:flex;align-items:center;gap:.75rem;}
.navbar-brand img{height:45px;width:auto;display:block;}
.navbar-brand .brand-icon{
  display:inline-flex;align-items:center;justify-content:center;
  width:46px;height:46px;border-radius:50%;
  background:var(--ffyr-accent);color:var(--ffyr-primary);font-size:1.2rem;
}
.navbar-brand,
.navbar-brand span,
.navbar-brand .brand-tagline,
.navbar-brand .brand-name{color:#ffffff !important;}
.navbar-brand .brand-name{
  font-size:1.1rem;font-weight:700;color:#ffffff !important;line-height:1.2;
}
.navbar-brand .brand-tagline{
  font-size:.75rem;color:#d4a528 !important;
  text-transform:uppercase;letter-spacing:1px;line-height:1.2;font-weight:600;
}
.navbar .nav-link{
  color:#ffffff !important;
  font-weight:500;padding:.55rem .9rem;
  position:relative;transition:var(--ffyr-transition);
}
.navbar .nav-link:hover,
.navbar .nav-link.active{color:#d4a528 !important;}
.navbar .nav-link::after{
  content:"";position:absolute;left:50%;bottom:.25rem;height:2px;width:0;
  background:var(--ffyr-accent);transition:var(--ffyr-transition);transform:translateX(-50%);
}
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after{width:60%;}

.btn-cta{
  background:var(--ffyr-secondary);border:2px solid var(--ffyr-secondary);
  color:#fff !important;font-weight:600;padding:.5rem 1.15rem;
  border-radius:var(--ffyr-radius);transition:var(--ffyr-transition);
}
.btn-cta:hover{
  background:var(--ffyr-secondary-dark);border-color:var(--ffyr-accent);color:#fff !important;
  box-shadow:0 4px 14px rgba(196,30,58,.4);
}

/* =================== Hero slider =================== */
.hero-slider{background:var(--ffyr-primary);}
.hero-slider .carousel-item{
  height:500px;background-size:cover;background-position:center;
  position:relative;
}
.hero-slider .carousel-item::before{
  content:"";position:absolute;inset:0;
  background:linear-gradient(to top,rgba(15,18,53,.85) 0%,rgba(15,18,53,.45) 50%,rgba(15,18,53,.25) 100%);
}
.hero-slider .carousel-caption{
  bottom:18%;text-align:left;left:8%;right:auto;max-width:60%;z-index:2;
}
.hero-slider .carousel-caption h2{
  color:#fff;font-size:2.8rem;font-weight:700;line-height:1.15;
  text-shadow:0 2px 10px rgba(0,0,0,.5);margin:0;
}
.hero-slider .carousel-caption h2::after{
  content:"";display:block;width:90px;height:4px;background:var(--ffyr-accent);margin-top:1rem;border-radius:2px;
}
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next{width:5%;opacity:.85;}
.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon{
  background-color:rgba(212,165,40,.85);border-radius:50%;
  width:48px;height:48px;background-size:50% 50%;
}
.hero-slider .carousel-indicators [data-bs-target]{
  background:var(--ffyr-accent);opacity:.5;width:30px;height:4px;border-radius:2px;
}
.hero-slider .carousel-indicators .active{opacity:1;}
.hero-slider .placeholder-slide{
  height:500px;
  background:linear-gradient(135deg,var(--ffyr-primary),var(--ffyr-primary-dark));
  display:flex;align-items:center;justify-content:center;color:#fff;text-align:center;
}

/* =================== News ticker =================== */
.news-ticker{
  background:var(--ffyr-primary);color:var(--ffyr-accent);
  padding:.7rem 0;overflow:hidden;font-weight:500;
  border-top:1px solid rgba(255,255,255,.08);
}
.news-ticker .ticker-label{
  display:inline-block;background:var(--ffyr-accent);color:var(--ffyr-primary);
  padding:.3rem .9rem;border-radius:var(--ffyr-radius);
  font-weight:700;margin-right:1rem;letter-spacing:.04em;font-size:.85rem;
}
.news-ticker marquee{display:inline-block;color:#fff;}

/* =================== Sections =================== */
.section{padding:5rem 0;}
.section.alt{background:var(--ffyr-bg);}
.section-title{text-align:center;margin-bottom:3rem;}
.section-title h2{
  font-weight:700;color:var(--ffyr-primary);font-size:2rem;margin-bottom:.5rem;
  display:inline-block;position:relative;padding-bottom:.85rem;
}
.section-title h2::after{
  content:"";position:absolute;left:50%;bottom:0;
  transform:translateX(-50%);width:64px;height:4px;
  background:var(--ffyr-accent);border-radius:2px;
}
.section-title .lead{color:var(--ffyr-muted);margin-top:1rem;}

/* About section heading variant */
.section h2.fw-bold{
  color:var(--ffyr-primary);position:relative;padding-bottom:.75rem;margin-bottom:1.25rem;
}
.section h2.fw-bold::after{
  content:"";position:absolute;left:0;bottom:0;width:60px;height:3px;
  background:var(--ffyr-accent);border-radius:2px;
}

/* =================== Cards (fronts / features) =================== */
.front-card,.feature-card{
  background:#fff;border:1px solid var(--ffyr-border);
  border-radius:var(--ffyr-radius);padding:1.75rem 1.25rem;
  text-align:center;height:100%;
  transition:var(--ffyr-transition);position:relative;overflow:hidden;
}
.front-card::before,.feature-card::before{
  content:"";position:absolute;top:0;left:0;right:0;height:3px;
  background:transparent;transition:var(--ffyr-transition);
}
.front-card:hover,.feature-card:hover{
  transform:translateY(-6px);box-shadow:var(--ffyr-shadow);
}
.front-card:hover::before,.feature-card:hover::before{background:var(--ffyr-accent);}
.front-card .icon{
  width:72px;height:72px;border-radius:50%;
  background:linear-gradient(135deg,var(--ffyr-primary),var(--ffyr-primary-light));
  color:var(--ffyr-accent);
  display:inline-flex;align-items:center;justify-content:center;
  font-size:1.8rem;margin-bottom:1.1rem;
  transition:var(--ffyr-transition);
}
.front-card:hover .icon{transform:scale(1.05) rotate(-5deg);}
.front-card h5{
  font-weight:700;color:var(--ffyr-primary);margin-bottom:.45rem;font-size:1.05rem;
}

/* =================== CTA block =================== */
.cta-block{
  background:linear-gradient(135deg,var(--ffyr-secondary),var(--ffyr-secondary-dark));
  color:#fff;border-radius:var(--ffyr-radius);
  padding:3rem 2rem;text-align:center;
  box-shadow:var(--ffyr-shadow);
}
.cta-block h3{color:#fff;font-weight:700;margin-bottom:.75rem;}
.cta-block p{color:rgba(255,255,255,.92);font-size:1.05rem;}
.cta-block .btn-cta{
  background:var(--ffyr-accent);border-color:var(--ffyr-accent);
  color:var(--ffyr-primary) !important;font-weight:700;
}
.cta-block .btn-cta:hover{
  background:#fff;border-color:#fff;color:var(--ffyr-secondary) !important;
  box-shadow:0 6px 18px rgba(0,0,0,.25);
}

/* =================== Page hero =================== */
.page-hero{
  background:linear-gradient(135deg,var(--ffyr-primary),var(--ffyr-primary-dark));
  color:#fff;padding:3.5rem 0;text-align:center;position:relative;overflow:hidden;
}
.page-hero::before{
  content:"";position:absolute;inset:0;
  background:radial-gradient(circle at 20% 50%,rgba(212,165,40,.15),transparent 60%);
}
.page-hero h1{color:#fff;font-weight:700;font-size:2.4rem;position:relative;}
.page-hero .breadcrumb{
  justify-content:center;background:transparent;padding:0;margin:0;position:relative;
}
.page-hero .breadcrumb a{color:var(--ffyr-accent);}
.page-hero .breadcrumb-item.active{color:rgba(255,255,255,.85);}

/* =================== Forms =================== */
.form-card{
  background:#fff;border:1px solid var(--ffyr-border);border-radius:var(--ffyr-radius);
  padding:2rem;box-shadow:var(--ffyr-shadow-sm);
}
.form-card label{font-weight:600;color:var(--ffyr-primary);}
.form-control,.form-select{
  border-radius:var(--ffyr-radius);border-color:var(--ffyr-border);padding:.6rem .85rem;
}
.form-control:focus,.form-select:focus{
  border-color:var(--ffyr-primary);box-shadow:0 0 0 .2rem rgba(26,31,78,.12);
}
.required-mark{color:var(--ffyr-secondary);}

/* =================== Gallery =================== */
.gallery-thumb{
  display:block;border-radius:var(--ffyr-radius);overflow:hidden;position:relative;
  aspect-ratio:4/3;background:linear-gradient(135deg,#eaeaea,#dcdcdc);
  box-shadow:var(--ffyr-shadow-sm);
}
.gallery-thumb img{
  width:100%;height:100%;object-fit:cover;
  transition:transform .4s ease;
}
.gallery-thumb:hover img{transform:scale(1.08);}
.gallery-thumb::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(to top,rgba(26,31,78,.5),transparent 50%);
  opacity:0;transition:var(--ffyr-transition);
}
.gallery-thumb:hover::after{opacity:1;}

/* =================== Blog =================== */
.blog-card{
  height:100%;border:1px solid var(--ffyr-border);
  border-radius:var(--ffyr-radius);overflow:hidden;background:#fff;
  transition:var(--ffyr-transition);
}
.blog-card:hover{transform:translateY(-4px);box-shadow:var(--ffyr-shadow);}
.blog-card .card-img{aspect-ratio:16/9;object-fit:cover;width:100%;}
.blog-card .card-body{padding:1.4rem;}
.blog-card h5{font-weight:700;line-height:1.35;margin-bottom:.6rem;}
.blog-card h5 a{color:var(--ffyr-primary);}
.blog-card h5 a:hover{color:var(--ffyr-secondary);}
.blog-card .card-body small{color:var(--ffyr-accent-dark);font-weight:500;}
.blog-card .badge{
  background:var(--ffyr-secondary);color:#fff;font-weight:500;
  padding:.3em .7em;border-radius:4px;
}

/* Post content typography */
.post-content{font-size:1.02rem;line-height:1.8;color:#444;}
.post-content h2,.post-content h3{color:var(--ffyr-primary);margin-top:1.5rem;}

/* =================== Footer =================== */
.site-footer{
  background:var(--ffyr-primary-dark);color:rgba(255,255,255,.78);
  padding:3.5rem 0 0;margin-top:5rem;
}
.site-footer .footer-brand{display:flex;align-items:center;gap:.65rem;margin-bottom:1rem;}
.site-footer .footer-brand img{height:40px;width:auto;display:block;}
.site-footer .footer-brand .brand-text{
  display:flex;flex-direction:column;line-height:1.15;color:#fff;font-weight:700;
}
.site-footer .footer-brand .tagline{
  font-size:.7rem;font-weight:500;color:var(--ffyr-accent);
  letter-spacing:.05em;text-transform:uppercase;
}
.site-footer .footer-title{
  color:var(--ffyr-accent);font-weight:700;margin-bottom:1.1rem;font-size:1.05rem;
  position:relative;padding-bottom:.5rem;
}
.site-footer .footer-title::after{
  content:"";position:absolute;left:0;bottom:0;width:36px;height:2px;background:var(--ffyr-accent);
}
.site-footer .footer-about{color:rgba(255,255,255,.7);font-size:.92rem;line-height:1.65;}
.site-footer .footer-links,
.site-footer .footer-contact{list-style:none;padding:0;margin:0;}
.site-footer .footer-links li,
.site-footer .footer-contact li{margin-bottom:.55rem;}
.site-footer .footer-links a{color:rgba(255,255,255,.78);font-size:.93rem;}
.site-footer .footer-links a:hover{color:var(--ffyr-accent);padding-left:4px;}
.site-footer .footer-contact i{width:18px;color:var(--ffyr-accent);margin-right:.5rem;}
.site-footer .footer-contact a{color:rgba(255,255,255,.78);}
.site-footer .footer-contact a:hover{color:var(--ffyr-accent);}
.site-footer .footer-social{display:flex;gap:.5rem;flex-wrap:wrap;}
.site-footer .footer-social a{
  display:inline-flex;width:38px;height:38px;border-radius:50%;
  background:rgba(255,255,255,.08);align-items:center;justify-content:center;
  color:#fff;font-size:.95rem;transition:var(--ffyr-transition);
}
.site-footer .footer-social a:hover{
  background:var(--ffyr-accent);color:var(--ffyr-primary-dark);transform:translateY(-2px);
}
.site-footer .footer-divider{border-color:rgba(255,255,255,.08);margin:2.5rem 0 0;}
.site-footer .footer-copy{
  background:rgba(0,0,0,.25);margin:1.5rem -12px 0;padding:1rem 12px;
  text-align:center;font-size:.88rem;color:rgba(255,255,255,.6);
}

/* =================== Alerts (override Bootstrap) =================== */
.alert{border-radius:var(--ffyr-radius);border:0;}
.alert-success{background:#dcfce7;color:#166534;}
.alert-danger{background:#fee2e2;color:#991b1b;}
.alert-info{background:#dbeafe;color:#1e40af;}
.alert-warning{background:#fef3c7;color:#92400e;}

/* =================== Membership form =================== */
.member-form .form-section{
  background:#fff;border:1px solid var(--ffyr-border);
  border-radius:var(--ffyr-radius);overflow:hidden;
  box-shadow:var(--ffyr-shadow-sm);margin-bottom:1.25rem;
}
.member-form .form-section-head{
  background:var(--ffyr-primary);color:#fff;
  padding:.85rem 1.1rem;font-weight:600;font-size:1rem;
  display:flex;align-items:center;gap:.75rem;
  border-bottom:3px solid var(--ffyr-accent);
}
.member-form .form-section-head .num{
  display:inline-flex;align-items:center;justify-content:center;
  width:30px;height:30px;border-radius:50%;
  background:var(--ffyr-accent);color:var(--ffyr-primary);
  font-weight:700;font-size:.95rem;
}
.member-form .form-section-body{padding:1.4rem 1.25rem;}
.member-form .form-label{font-weight:600;color:#374151;font-size:.92rem;}
.member-form .required-mark{color:var(--ffyr-secondary);font-weight:700;margin-left:2px;}

/* File-drop areas */
.file-drop{
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  text-align:center;padding:1.5rem 1rem;cursor:pointer;
  border:2px dashed #c8cbd9;border-radius:var(--ffyr-radius);
  background:#fafbff;color:var(--ffyr-primary);
  transition:var(--ffyr-transition);min-height:140px;width:100%;
}
.file-drop:hover{
  border-color:var(--ffyr-accent);background:#fff8e7;color:var(--ffyr-primary-dark);
}
.file-drop.sm{padding:.6rem .9rem;min-height:auto;font-size:.85rem;}
.file-drop-text{font-weight:500;font-size:.9rem;}
.file-drop-name{word-break:break-all;}

/* Photo preview */
.photo-preview-wrap{text-align:center;}
.photo-preview{
  width:120px;height:120px;border-radius:50%;
  border:3px solid var(--ffyr-accent);overflow:hidden;
  background:#f4f5fa;display:flex;align-items:center;justify-content:center;
  margin:0 auto .75rem;color:#9ca3af;font-size:2.4rem;
}
.photo-preview img{width:100%;height:100%;object-fit:cover;display:block;}

/* Tier cards */
.tier-grid .tier-card{
  display:block;cursor:pointer;height:100%;
  background:#fff;border:2px solid var(--ffyr-border);border-radius:var(--ffyr-radius);
  padding:1.25rem 1rem;text-align:center;
  transition:var(--ffyr-transition);position:relative;
}
.tier-grid .tier-card:hover{border-color:var(--ffyr-accent);transform:translateY(-2px);}
.tier-grid .tier-card.selected{
  border-color:var(--ffyr-secondary);background:#fff4f6;
  box-shadow:0 6px 18px rgba(196,30,58,.12);
}
.tier-grid .tier-card input[type="radio"]{position:absolute;opacity:0;pointer-events:none;}
.tier-grid .tier-card .tier-name{
  font-weight:700;color:var(--ffyr-primary);font-size:1.05rem;margin-bottom:.4rem;
}
.tier-grid .tier-card .tier-amount{
  font-weight:800;font-size:1.8rem;color:var(--ffyr-secondary);line-height:1;
}
.tier-grid .tier-card .tier-validity{
  font-size:.78rem;color:var(--ffyr-muted);
  text-transform:uppercase;letter-spacing:.06em;margin:.35rem 0 .55rem;
}
.tier-grid .tier-card .tier-desc{font-size:.85rem;color:#525866;line-height:1.45;}

/* Terms box */
.terms-box{
  max-height:180px;overflow-y:auto;background:#f8f9fa;
  border:1px solid var(--ffyr-border);border-radius:var(--ffyr-radius);
  padding:1rem 1rem 1rem 2.25rem;font-size:.92rem;color:#374151;
}
.terms-box ol li{margin-bottom:.55rem;line-height:1.55;}

/* Submit button */
.btn-submit{
  background:var(--ffyr-secondary);border:0;color:#fff !important;
  font-weight:700;letter-spacing:.02em;
  padding:.85rem 2rem;border-radius:var(--ffyr-radius);
  box-shadow:0 6px 18px rgba(196,30,58,.25);
  transition:var(--ffyr-transition);
}
.btn-submit:hover{
  background:var(--ffyr-secondary-dark);color:#fff !important;
  box-shadow:0 8px 22px rgba(196,30,58,.35);transform:translateY(-1px);
}
.btn-submit:disabled{opacity:.65;cursor:not-allowed;transform:none;}

/* =================== Membership tracking =================== */
.track-hero{
  background:linear-gradient(135deg,var(--ffyr-primary) 0%,var(--ffyr-primary-dark) 100%);
  color:#fff;padding:4rem 0 5rem;position:relative;overflow:hidden;text-align:center;
}
.track-hero::before{
  content:"";position:absolute;inset:0;
  background:radial-gradient(circle at 20% 30%,rgba(212,165,40,.18),transparent 50%),
             radial-gradient(circle at 80% 70%,rgba(196,30,58,.12),transparent 50%);
}
.track-hero-title{
  color:#fff;font-weight:700;font-size:2.4rem;margin:0 0 .6rem;position:relative;
}
.track-hero-title::after{
  content:"";display:block;width:80px;height:4px;background:var(--ffyr-accent);
  border-radius:2px;margin:.85rem auto 0;
}
.track-hero-sub{
  color:rgba(255,255,255,.78);font-size:1.02rem;margin-bottom:2rem;
  position:relative;max-width:600px;margin-left:auto;margin-right:auto;
}
.track-search-box{
  position:relative;display:flex;align-items:center;gap:0;
  max-width:640px;margin:0 auto;
  background:#fff;border-radius:50px;
  box-shadow:0 14px 40px rgba(0,0,0,.25);overflow:hidden;
  padding:6px;
}
.track-search-box .track-input{
  flex:1;border:0;background:transparent;
  padding:.85rem 1.2rem;font-size:1rem;color:var(--ffyr-text);outline:0;
}
.track-search-box .track-input:focus{outline:0;box-shadow:none;}
.track-search-box .track-btn{
  background:var(--ffyr-secondary);color:#fff;border:0;
  padding:.85rem 1.6rem;font-weight:700;font-size:.95rem;
  border-radius:50px;cursor:pointer;display:inline-flex;align-items:center;
  transition:var(--ffyr-transition);
}
.track-search-box .track-btn i{color:var(--ffyr-accent);}
.track-search-box .track-btn:hover{
  background:var(--ffyr-secondary-dark);box-shadow:0 4px 14px rgba(196,30,58,.4);
}
.track-search-box .track-btn:disabled{opacity:.7;cursor:not-allowed;}

/* Result wrapper + fade */
.track-result{opacity:0;transform:translateY(8px);transition:opacity .35s ease,transform .35s ease;}
.track-result.fade-in{opacity:1;transform:none;}

/* Result card */
.status-card{
  background:#fff;border:1px solid var(--ffyr-border);
  border-radius:var(--ffyr-radius);overflow:hidden;
  box-shadow:0 8px 30px rgba(26,31,78,.08);
}
.status-card-top{
  display:flex;align-items:center;gap:1.25rem;
  padding:1.5rem;background:linear-gradient(to right,#f8f9fc,#fff);
  border-bottom:1px solid var(--ffyr-border);
}
.status-photo{
  width:100px;height:100px;border-radius:50%;
  object-fit:cover;flex-shrink:0;
  border:3px solid var(--ffyr-primary);background:#f0f2f7;
}
.status-photo.approved{border-color:var(--ffyr-accent);box-shadow:0 0 0 4px rgba(212,165,40,.18);}
.status-photo-placeholder{
  display:inline-flex;align-items:center;justify-content:center;
  color:#9ca3af;font-size:2.2rem;
}
.status-card-id{flex:1;min-width:0;}
.status-card-id .member-name{
  margin:0 0 .25rem;color:var(--ffyr-primary);font-weight:700;font-size:1.4rem;line-height:1.2;
}
.status-card-id .member-id{margin-bottom:.55rem;color:#525866;}
.status-card-id .member-id code{
  background:rgba(26,31,78,.07);color:var(--ffyr-primary);
  padding:.2rem .55rem;border-radius:6px;font-weight:600;
}

.status-pill{
  display:inline-flex;align-items:center;gap:.3rem;
  padding:.4rem .9rem;border-radius:50px;
  font-weight:600;font-size:.85rem;letter-spacing:.02em;
}
.pill-approved{background:#dcfce7;color:#166534;}
.pill-pending {background:#fef3c7;color:#92400e;}
.pill-rejected{background:#fee2e2;color:#991b1b;}

/* Detail grid */
.status-card-body{padding:1.5rem;}
.status-grid{
  display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.85rem 1.5rem;margin-bottom:1.25rem;
}
.status-detail{
  display:flex;flex-direction:column;
  border-bottom:1px dashed var(--ffyr-border);padding-bottom:.55rem;
}
.status-detail .lbl{
  font-size:.78rem;color:var(--ffyr-muted);
  text-transform:uppercase;letter-spacing:.05em;margin-bottom:.15rem;font-weight:500;
}
.status-detail .val{font-weight:600;color:var(--ffyr-primary);font-size:.98rem;}
.status-detail .val .masked{
  font-family:'Courier New',ui-monospace,monospace;
  letter-spacing:.04em;color:#525866;
}

/* Status info boxes */
.status-info-box{
  border-radius:var(--ffyr-radius);padding:.85rem 1rem;font-size:.95rem;
  display:flex;align-items:flex-start;line-height:1.5;
}
.status-info-box i:first-child{flex-shrink:0;margin-top:.15rem;}
.info-success{background:#dcfce7;color:#166534;border-left:4px solid #16a34a;}
.info-warning{background:#fef3c7;color:#92400e;border-left:4px solid #d4a528;}
.info-danger {background:#fee2e2;color:#991b1b;border-left:4px solid var(--ffyr-secondary);}
.info-danger a{color:#7f1d1d;text-decoration:underline;font-weight:700;}

/* Not-found card */
.status-card.status-notfound .not-found-icon{
  font-size:3.5rem;color:#cbd5e1;margin-bottom:.75rem;
}
.status-card.status-notfound .link-apply{
  color:var(--ffyr-secondary);font-weight:700;text-decoration:underline;
}
.status-card.status-notfound .link-apply:hover{color:var(--ffyr-secondary-dark);}

@media (max-width:576px){
  .track-hero{padding:2.5rem 0 3rem;}
  .track-hero-title{font-size:1.8rem;}
  .track-search-box{flex-direction:column;border-radius:var(--ffyr-radius);padding:8px;gap:8px;}
  .track-search-box .track-input{width:100%;text-align:center;padding:.85rem .5rem;}
  .track-search-box .track-btn{width:100%;justify-content:center;border-radius:var(--ffyr-radius);}
  .status-card-top{flex-direction:column;text-align:center;}
  .status-grid{grid-template-columns:1fr;}
}

/* =================== Image skeleton =================== */
img[loading="lazy"]{
  background:linear-gradient(90deg,#f0f0f0 25%,#e6e6e6 50%,#f0f0f0 75%);
  background-size:200% 100%;
  animation:ffyr-skeleton 1.4s ease-in-out infinite;
}
img[loading="lazy"][src]{animation:none;background:none;}
@keyframes ffyr-skeleton{
  0%{background-position:200% 0;}
  100%{background-position:-200% 0;}
}

/* =================== Responsive =================== */
@media (max-width:992px){
  .navbar.bg-white{padding:.5rem 0;}
  .navbar-brand img{height:42px;}
  .navbar-brand .brand-text{font-size:.95rem;}
  .navbar .nav-link{padding:.55rem 0;color:#fff !important;}
  .navbar .nav-link::after{display:none;}
}
@media (max-width:768px){
  .hero-slider .carousel-item,
  .hero-slider .placeholder-slide{height:300px;}
  .hero-slider .carousel-caption{max-width:90%;left:5%;bottom:12%;}
  .hero-slider .carousel-caption h2{font-size:1.5rem;}
  .hero-slider .carousel-control-prev-icon,
  .hero-slider .carousel-control-next-icon{width:36px;height:36px;}
  .section{padding:3rem 0;}
  .section-title{margin-bottom:2rem;}
  .section-title h2{font-size:1.6rem;}
  .cta-block{padding:2rem 1.25rem;}
  .page-hero{padding:2.5rem 0;}
  .page-hero h1{font-size:1.8rem;}
  .site-footer{padding-top:2.5rem;margin-top:3rem;}
}
