/* Fonts */
:root {
  --default-font: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --heading-font: "Space Grotesk", "Roboto", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

/* ── Global Colors ── */
:root {
  --background-color: #ffffff;
  --default-color:    #364d59;
  --heading-color:    #1f0a0a;
  --accent-color:     #c9a227;
  --surface-color:    #ffffff;
  --contrast-color:   #ffffff;
}

/* ── Nav Colors ── */
:root {
  --nav-color:                     rgba(255,255,255,0.65);
  --nav-hover-color:               #ffffff;
  --nav-mobile-background-color:   #1f0a0a;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color:            #212529;
  --nav-dropdown-hover-color:      #7b1818;
}

/* ── Legacy variable aliases (used in about/verify/detail templates) ── */
:root {
  --maroon-darkest: #120508;
  --maroon-dark:    #1f0a0a;
  --maroon-mid:     #3d1010;
  --maroon-base:    #7b1818;
  --maroon-light:   #a82222;
  --accent:         #c9a227;
  --accent-light:   #e6c540;
  --accent-dark:    #a08020;
  --accent-glow:    rgba(201,162,39,0.35);
  --surface-soft:   #f8eeee;
  --surface-warm:   #f5f0f0;
  --text-body:      #1e1010;
  --text-muted:     #7a6060;
  --border:         #e2d5d5;
  --gold-soft:      #fff8dc;
  --glass-dark:     rgba(18,5,8,0.80);
  --glass-border:   rgba(255,255,255,0.07);
}

/* ── Reveal animation (used in about/detail templates) ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
@media (max-width: 768px) {
  .reveal { opacity: 1; transform: none; }
  .reveal-delay-1, .reveal-delay-2, .reveal-delay-3, .reveal-delay-4 { transition-delay: 0s; }
}

/* ── Home-page card tokens ── */
.index-page {
  --home-card-radius: 20px;
  --home-card-border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  --home-card-shadow: 0 16px 36px color-mix(in srgb, var(--heading-color), transparent 88%);
  --home-soft-shadow: 0 12px 28px color-mix(in srgb, var(--heading-color), transparent 90%);
}

/* ── Section Presets ── */
.light-background {
  --background-color: #f8eeee;
  --surface-color:    #ffffff;
}

.dark-background {
  --background-color: #120508;
  --default-color:    #ffffff;
  --heading-color:    #ffffff;
  --surface-color:    #1f0a0a;
  --contrast-color:   #ffffff;
}

/* ── Smooth scroll ── */
:root { scroll-behavior: smooth; }

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

h1,h2,h3,h4,h5,h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* Scrollbar */
::-webkit-scrollbar        { width: 6px; height: 6px; }
::-webkit-scrollbar-track  { background: #f8eeee; }
::-webkit-scrollbar-thumb  { background: #7b1818; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-color); }

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed; inset: 0; z-index: 999999; overflow: hidden;
  background: #120508;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease;
}
#preloader.hidden { opacity: 0; pointer-events: none; }
.preloader-inner {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 90px; height: 90px;
}
.preloader-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(201,162,39,0.15);
  border-top-color: var(--accent-color);
  animation: preloaderSpin 0.9s linear infinite;
}
@keyframes preloaderSpin { to { transform: rotate(360deg); } }
.preloader-logo {
  width: 52px; height: 52px; object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(201,162,39,0.3));
}

/*--------------------------------------------------------------
# Scroll Top
--------------------------------------------------------------*/
.scroll-top {
  position: fixed; visibility: hidden; opacity: 0;
  right: 15px; bottom: 15px; z-index: 99999;
  background-color: var(--accent-color);
  width: 40px; height: 40px; border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.4s;
}
.scroll-top i { font-size: 24px; color: #1f0a0a; line-height: 0; }
.scroll-top:hover { background-color: color-mix(in srgb, var(--accent-color), transparent 20%); }
.scroll-top.active { visibility: visible; opacity: 1; }

/* AOS delay disabled on mobile */
@media screen and (max-width: 768px) {
  [data-aos-delay] { transition-delay: 0 !important; }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255,255,255,0);
  --default-color:    #ffffff;
  --heading-color:    #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 14px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
  gap: 10px;
}
.header .logo img {
  max-height: 58px;
  filter: drop-shadow(0 0 10px rgba(201,162,39,0.45));
  transition: filter 0.3s;
}
.header .logo .sitename {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--heading-font);
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scrolled .header {
  --background-color: rgba(31,10,10,0.97);
  --heading-color:    #ffffff;
  --nav-color:        rgba(255,255,255,0.85);
  --nav-hover-color:  #c9a227;
  box-shadow: 0px 0 20px rgba(0,0,0,0.35);
}
.scrolled .header .logo img {
  max-height: 46px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop */
@media (min-width: 1200px) {
  .navmenu { padding: 0; }
  .navmenu ul {
    margin: 0; padding: 0;
    display: flex; list-style: none; align-items: center;
  }
  .navmenu li { position: relative; }
  .navmenu > ul > li { white-space: nowrap; padding: 15px 14px; }
  .navmenu > ul > li:last-child { padding-right: 0; }

  .navmenu a, .navmenu a:focus {
    color: var(--nav-color);
    font-size: 14px; padding: 0 2px;
    font-family: var(--nav-font); font-weight: 500;
    display: flex; align-items: center; justify-content: space-between;
    white-space: nowrap; transition: 0.3s;
    position: relative; text-transform: uppercase;
  }
  .navmenu a i { font-size: 12px; line-height: 0; margin-left: 5px; transition: 0.3s; }

  .navmenu > ul > li > a:before {
    content: ""; position: absolute;
    height: 2px; bottom: -6px; left: 0;
    background-color: var(--accent-color);
    visibility: hidden; width: 0; transition: all 0.3s ease-in-out 0s;
  }
  .navmenu a:hover:before, .navmenu li:hover > a:before, .navmenu .active:before {
    visibility: visible; width: 100%;
  }
  .navmenu li:hover > a, .navmenu .active, .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0; padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block; position: absolute;
    visibility: hidden; left: 14px; top: 130%;
    opacity: 0; transition: 0.3s;
    border-radius: 4px; z-index: 99;
    box-shadow: 0 0 30px rgba(0,0,0,0.1);
  }
  .navmenu .dropdown ul li { min-width: 200px; }
  .navmenu .dropdown ul a {
    padding: 10px 20px; font-size: 15px;
    text-transform: none; font-weight: 400;
    color: var(--nav-dropdown-color);
  }
  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a { color: var(--nav-dropdown-hover-color); }
  .navmenu .dropdown:hover > ul { opacity: 1; top: 100%; visibility: visible; }
  .navmenu .dropdown .dropdown ul { top: 0; left: -90%; visibility: hidden; }
  .navmenu .dropdown .dropdown:hover > ul { opacity: 1; top: 0; left: -100%; visibility: visible; }

  /* Getstarted button */
  .navmenu a.btn-getstarted {
    padding: 8px 20px;
    margin-left: 10px;
    background: var(--accent-color);
    color: #1f0a0a !important;
    border-radius: 4px;
    font-weight: 600;
    text-transform: none;
    transition: background 0.3s;
  }
  .navmenu a.btn-getstarted:before { display: none; }
  .navmenu a.btn-getstarted:hover { background: color-mix(in srgb, var(--accent-color), #fff 15%); }
}

/* Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px; line-height: 0;
    margin-right: 10px; cursor: pointer; transition: color 0.3s;
  }
  .navmenu { padding: 0; z-index: 9997; }
  .navmenu ul {
    display: none; list-style: none;
    position: absolute; inset: 60px 20px 20px 20px;
    padding: 10px 0; margin: 0; border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid rgba(201,162,39,0.2);
    box-shadow: none; overflow-y: auto; transition: 0.3s; z-index: 9998;
  }
  .navmenu a, .navmenu a:focus {
    color: rgba(255,255,255,0.85);
    padding: 10px 20px; font-family: var(--nav-font); font-size: 16px; font-weight: 500;
    display: flex; align-items: center; justify-content: space-between;
    white-space: nowrap; transition: 0.3s;
  }
  .navmenu a i {
    font-size: 12px; line-height: 0; margin-left: 5px;
    width: 30px; height: 30px; display: flex;
    align-items: center; justify-content: center;
    border-radius: 50%; transition: 0.3s;
    background-color: rgba(201,162,39,0.15);
  }
  .navmenu a:hover, .navmenu .active, .navmenu .active:focus { color: var(--accent-color); }
  .navmenu .dropdown ul {
    position: static; display: none; z-index: 99;
    padding: 10px 0; margin: 10px 20px;
    background-color: rgba(255,255,255,0.05); transition: all 0.5s ease-in-out;
  }
  .navmenu .dropdown > .dropdown-active { display: block; }
  .mobile-nav-active { overflow: hidden; }
  .mobile-nav-active .mobile-nav-toggle {
    color: #fff; position: absolute; font-size: 32px;
    top: 15px; right: 15px; margin-right: 0; z-index: 9999;
  }
  .mobile-nav-active .navmenu {
    position: fixed; overflow: hidden; inset: 0;
    background: rgba(18,5,8,0.85); transition: 0.3s;
  }
  .mobile-nav-active .navmenu > ul { display: block; }

  .navmenu a.btn-getstarted {
    background: var(--accent-color); color: #1f0a0a !important;
    padding: 8px 20px; border-radius: 4px; font-weight: 600;
    margin: 4px 20px; display: block;
  }
}

/* Dropdown toggle icon */
.navmenu .toggle-dropdown { cursor: pointer; }

/* Logout button in navmenu */
.navmenu .btn-logout {
  background: none; border: none; padding: 10px 20px;
  font-family: var(--nav-font); font-size: 15px; font-weight: 400;
  color: #c0392b; cursor: pointer; width: 100%; text-align: left;
  transition: 0.3s;
}
.navmenu .btn-logout:hover { color: #e74c3c; }

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}
.footer .container { position: relative; }

.footer-accent-line {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-color), #f0c040, var(--accent-color), transparent);
}

.footer .footer-top { padding: 56px 0 48px; }
.footer .footer-top .row { align-items: flex-start; }

/* Brand */
.footer-brand-logo {
  width: 64px; height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(201,162,39,0.4));
  flex-shrink: 0;
}
.footer-brand-name {
  font-family: var(--heading-font);
  font-size: 1.05rem; font-weight: 800;
  color: var(--contrast-color);
  line-height: 1.2;
}
.footer-brand-tagline {
  font-size: 0.68rem; font-weight: 600;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
  margin-top: 2px;
}
.footer-desc {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-bottom: 0;
}

/* Contact info rows */
.footer-contact-info { display: flex; flex-direction: column; gap: 8px; }
.fci-row {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.84rem; color: rgba(255,255,255,0.55);
}
.fci-row i {
  color: var(--accent-color); font-size: 0.8rem;
  margin-top: 2px; flex-shrink: 0;
}

/* Social */
.footer-social { display: flex; gap: 10px; }
.footer-social-link {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 8px;
  border: 1px solid rgba(201,162,39,0.25);
  background: rgba(201,162,39,0.07);
  color: rgba(255,255,255,0.6);
  font-size: 1rem; transition: all 0.2s;
}
.footer-social-link:hover {
  background: rgba(201,162,39,0.18);
  border-color: rgba(201,162,39,0.5);
  color: var(--accent-color);
  transform: translateY(-2px);
}

/* Nav columns */
.footer-heading {
  font-size: 0.78rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 18px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,162,39,0.2);
}
.footer-nav-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.footer-nav-list li a,
.footer-nav-list li span {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}
.footer-nav-list li a:hover {
  color: var(--accent-color);
  padding-left: 4px;
}

/* Social media grid */
.footer-socmed-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.footer-socmed-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.65);
  font-size: 0.84rem; font-weight: 600;
  transition: all 0.2s;
  text-decoration: none;
}
.footer-socmed-btn i { font-size: 1.15rem; flex-shrink: 0; }
.footer-socmed-btn:hover {
  background: rgba(201,162,39,0.1);
  border-color: rgba(201,162,39,0.3);
  color: var(--accent-color);
  transform: translateY(-2px);
}
.footer-socmed-btn.footer-socmed-disabled {
  opacity: 0.35; pointer-events: none;
}
.footer-officer-link {
  font-size: 0.8rem; color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.footer-officer-link:hover { color: var(--accent-color); }

/* Bottom bar */
.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(0,0,0,0.2);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom strong { color: rgba(255,255,255,0.6); }
.footer-motto {
  font-style: italic;
  color: rgba(201,162,39,0.5);
  font-size: 0.78rem;
}
.footer-dev {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.footer-dev strong { color: var(--accent-color); }

/*--------------------------------------------------------------
# Page Title & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover; background-position: center; background-repeat: no-repeat;
  padding: 180px 0 90px 0; text-align: center; position: relative;
}
.page-title:before {
  content: "";
  background-color: rgba(18,5,8,0.62);
  position: absolute; inset: 0;
}
.page-title h1 { font-size: 56px; font-weight: 800; margin-bottom: 10px; position: relative; letter-spacing: -0.01em; }
@media (max-width: 768px) { .page-title { padding: 140px 0 60px; } .page-title h1 { font-size: 36px; } }
.page-title .breadcrumbs { position: relative; }
.page-title .breadcrumbs ol {
  display: flex; flex-wrap: wrap; list-style: none;
  justify-content: center; padding: 0; margin: 0;
  font-size: 16px; font-weight: 500;
}
.page-title .breadcrumbs ol li,
.page-title .breadcrumbs ol li a { color: var(--default-color); }
.page-title .breadcrumbs ol li a:hover { color: var(--accent-color); }
.page-title .breadcrumbs ol li.current { color: var(--accent-color); }
.page-title .breadcrumbs ol li + li { padding-left: 10px; }
.page-title .breadcrumbs ol li + li::before {
  content: "/"; display: inline-block; padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section, .section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 92px;
  overflow: clip;
}
@media (max-width: 1199px) {
  section, .section { scroll-margin-top: 76px; }
}

/*--------------------------------------------------------------
# Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}
.section-title h2 {
  font-size: 32px; font-weight: 700; position: relative;
}
.section-title h2:before,
.section-title h2:after {
  content: ""; width: 50px; height: 2px;
  background: var(--accent-color); display: inline-block;
}
.section-title h2:before { margin: 0 15px 10px 0; }
.section-title h2:after  { margin: 0 0 10px 15px; }
.section-title p { margin-bottom: 0; max-width: 620px; margin-left: auto; margin-right: auto; }

.section-action {
  text-align: center;
  margin-top: 40px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%; min-height: 100vh; position: relative;
  padding: 0; display: flex; align-items: center;
  justify-content: center; overflow: hidden;
}
.hero .info {
  position: relative; inset: 0; z-index: 3;
  padding: 140px 0 60px 0;
}
@media (max-width: 768px) {
  .hero .info { padding: 100px 0 60px; }
}
.hero .info h2 {
  margin-bottom: 0; padding-bottom: 0;
  font-size: clamp(2.2rem, 4.2vw, 3.6rem); font-weight: 800; position: relative;
}
.hero .info h2:after { display: none; }
@media (max-width: 768px) { .hero .info h2 { font-size: clamp(1.9rem, 8vw, 2.6rem); } }
.hero .info p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
}

.hero .carousel { inset: 0; position: absolute; overflow: hidden; }
.hero .carousel-inner { height: 100%; }
.hero .carousel-item {
  position: absolute; inset: 0; background-size: cover;
  background-position: center; background-repeat: no-repeat;
  overflow: hidden; transition-duration: 0.4s;
}
.hero .carousel-item img {
  position: absolute; inset: 0; display: block;
  width: 100%; height: 100%; object-fit: cover; z-index: 1;
}
.hero .carousel-item::before {
  content: ""; background-color: rgba(18,5,8,0.72);
  position: absolute; inset: 0; z-index: 2;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%); z-index: 4;
  color: rgba(255,255,255,0.35);
  animation: scrollBounce 2s ease-in-out infinite;
  font-size: 1.5rem;
}
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Logo glow animation */
.hero-logo-glow {
  filter: drop-shadow(0 12px 40px rgba(120,0,30,0.3));
  animation: heroFloat 4s ease-in-out infinite;
}
@keyframes heroFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Pre-label */
.hero-pre-label {
  font-family: var(--nav-font); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-color);
  text-shadow: 0 0 20px rgba(201,162,39,0.5);
}
.hero-pre-label-wrap {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(201,162,39,0.08); border: 1px solid rgba(201,162,39,0.25);
  border-radius: 40px; padding: 6px 16px; margin-bottom: 1.6rem;
  backdrop-filter: blur(6px);
}
.hero-pre-label-wrap .hero-pre-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-color); flex-shrink: 0;
  box-shadow: 0 0 8px rgba(201,162,39,0.8);
}
.hero-sec-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px; padding: 7px 14px; margin-bottom: 1.4rem;
  backdrop-filter: blur(6px);
}
.hero-sec-badge .sec-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e; flex-shrink: 0;
  box-shadow: 0 0 8px rgba(34,197,94,0.7);
}
.hero-sec-badge span {
  font-family: var(--nav-font); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.75);
}
.hero-sec-badge strong {
  color: #fff; font-weight: 800;
}

/* Ring pulse animation */
@keyframes ringPulse {
  0%,100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.1; transform: scale(1.05); }
}

/*--------------------------------------------------------------
# Trust / Stats Bar
--------------------------------------------------------------*/
.index-page .home-trust.section {
  padding: 34px 0 20px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface-color), #fff 5%) 0%, var(--surface-color) 70%);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 86%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 86%);
  position: relative; overflow: hidden;
}
.index-page .home-trust.section::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 15% 0%, color-mix(in srgb, var(--accent-color), transparent 88%) 0%, transparent 52%);
  opacity: 0.6; pointer-events: none;
}
.index-page .home-trust .container { position: relative; z-index: 1; }
.index-page .home-trust .trust-grid {
  justify-content: center; max-width: 1040px; margin: 0 auto;
}

.index-page .trust-card {
  border-radius: var(--home-card-radius);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 86%);
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface-color), #fff 7%) 0%, var(--surface-color) 100%);
  padding: clamp(16px, 2.1vw, 22px);
  min-height: clamp(114px, 14vw, 150px);
  text-align: center; box-shadow: var(--home-card-shadow);
  height: 100%; position: relative; overflow: hidden;
  display: grid; gap: 6px; align-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.index-page .trust-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--accent-color), transparent); opacity: 0.75;
}
.index-page .trust-card::after {
  content: ""; position: absolute;
  width: 70px; height: 70px; right: -26px; bottom: -28px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 85%) 0%, transparent 70%);
  opacity: 0.45;
}
.index-page .trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 42px color-mix(in srgb, var(--heading-color), transparent 86%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}
.index-page .trust-icon {
  font-size: 1.4rem; color: var(--accent-color); margin-bottom: 4px;
}
.index-page .trust-value {
  display: inline-flex; align-items: baseline; justify-content: center;
  gap: 6px; width: 100%;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem); font-weight: 700;
  color: var(--heading-color); line-height: 1.1; letter-spacing: 0.01em;
}
.index-page .trust-suffix {
  font-size: 0.55em; font-weight: 600; letter-spacing: 0.04em;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}
.index-page .trust-label {
  font-size: 0.85rem; font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-top: 2px; line-height: 1.35;
}

/*--------------------------------------------------------------
# Why / Icon Boxes
--------------------------------------------------------------*/
.index-page .home-why.section { background: var(--surface-color); position: relative; }
.index-page .home-why .icon-box {
  border-radius: 20px; padding: 20px;
  background: linear-gradient(135deg, #ffffff 0%, color-mix(in srgb, var(--surface-color), #fff 45%) 100%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 86%);
  box-shadow: 0 16px 36px color-mix(in srgb, var(--heading-color), transparent 88%);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  gap: 14px; height: 100%; position: relative; overflow: hidden;
  display: flex; align-items: flex-start;
}
.index-page .home-why .icon-box::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--accent-color), transparent); opacity: 0.75;
}
.index-page .home-why .icon-box i {
  width: 52px; height: 52px; border-radius: 16px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.35rem; flex-shrink: 0;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 60%);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 78%);
}
.index-page .home-why .icon-box h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 6px; }
.index-page .home-why .icon-box p {
  margin-bottom: 0; color: color-mix(in srgb, var(--default-color), transparent 18%); line-height: 1.6;
}
.index-page .home-why .icon-box:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  box-shadow: 0 22px 46px color-mix(in srgb, var(--heading-color), transparent 86%);
}

/*--------------------------------------------------------------
# Achievements Filter Bar
--------------------------------------------------------------*/
.ach-filter-bar {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(31,10,10,0.08);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 20px 24px;
}
.ach-filter-form {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  gap: 12px;
}
.ach-filter-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 180px;
}
.ach-filter-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 2px;
}
.ach-filter-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.ach-filter-input-wrap i {
  position: absolute;
  left: 12px;
  color: #aaa;
  font-size: 0.85rem;
  pointer-events: none;
}
.ach-filter-input,
.ach-filter-select {
  width: 100%;
  padding: 10px 12px 10px 34px;
  border: 1.5px solid #e8e8e8;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--heading-color);
  background: #fafafa;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.ach-filter-input:focus,
.ach-filter-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.12);
  background: #fff;
}
.ach-filter-divider {
  width: 1px; height: 48px;
  background: #eee;
  flex-shrink: 0;
}
.ach-filter-btn {
  padding: 10px 22px;
  background: linear-gradient(135deg, #1f0a0a, #3d1010);
  color: var(--accent-color);
  border: none;
  border-radius: 8px;
  font-size: 0.87rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  flex-shrink: 0;
  white-space: nowrap;
}
.ach-filter-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.ach-filter-clear {
  font-size: 0.82rem;
  color: #999;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s;
}
.ach-filter-clear:hover { color: #c00; }

/*--------------------------------------------------------------
# Achievement Cards (project-style)
--------------------------------------------------------------*/
.ach-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 4px 20px rgba(31,10,10,0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.ach-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(31,10,10,0.13);
}
.ach-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.ach-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.ach-card:hover .ach-card-img { transform: scale(1.04); }
.ach-card-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #3d1010, #120508);
  display: flex; align-items: center; justify-content: center;
  color: rgba(201,162,39,0.3);
  font-size: 3.5rem;
}
.ach-card-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--accent-color);
  color: #1a0808;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}
.ach-card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ach-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: #aaa;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.ach-card-meta i { font-size: 0.75rem; color: var(--accent-color); }
.ach-card-meta-sep { color: #ccc; }
.ach-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
  line-height: 1.4;
}
.ach-card-desc {
  font-size: 0.87rem;
  color: #888;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}
.ach-card-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--maroon-base);
  letter-spacing: 0.02em;
  transition: gap 0.2s, color 0.2s;
  display: inline-flex;
  align-items: center;
}
.ach-card-link:hover { color: var(--accent-color); }

@media (max-width: 768px) {
  .ach-filter-bar { padding: 16px; }
  .ach-filter-divider { display: none; }
  .ach-filter-group { min-width: 100%; }
}

/*--------------------------------------------------------------
# Portfolio / Achievements Grid
--------------------------------------------------------------*/
.projects .portfolio-content {
  position: static; overflow: visible;
  display: flex; flex-direction: column;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 14px; box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  height: 100%; transition: transform 180ms ease, box-shadow 220ms ease;
}
.projects .portfolio-content:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 56px color-mix(in srgb, var(--heading-color), transparent 80%);
}
.projects .portfolio-item { display: flex; }
.projects .portfolio-item .portfolio-content { flex: 1; }

.projects .portfolio-thumb {
  overflow: hidden; border-radius: 12px 12px 0 0; position: relative;
}
.projects .portfolio-content img {
  width: 100%; height: clamp(160px, 17vw, 200px); object-fit: cover;
  display: block; transition: transform 0.4s ease;
}
.projects .portfolio-content:hover img { transform: scale(1.04); }

.projects .portfolio-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; background: rgba(18,5,8,0.45);
  opacity: 0; transform: scale(0.98);
  transition: opacity 180ms ease, transform 180ms ease;
  text-decoration: none;
}
.projects .portfolio-overlay i { font-size: 26px; }
.projects .portfolio-content:hover .portfolio-overlay { opacity: 1; transform: scale(1); }

.projects .portfolio-category {
  position: absolute; top: 10px; left: 10px;
  background: rgba(18,5,8,0.7); color: var(--accent-color);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 4px;
  backdrop-filter: blur(4px); z-index: 2;
}

.projects .portfolio-info {
  padding: 22px; display: flex; flex-direction: column; flex: 1;
}
.projects .portfolio-title {
  font-size: 1.05rem; font-weight: 700; margin-bottom: 8px;
  color: var(--heading-color);
}
.projects .portfolio-info p {
  font-size: 0.88rem; color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6; flex: 1; margin-bottom: 14px;
}
.projects .portfolio-actions { margin-top: auto; }
.projects .details-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.88rem; font-weight: 600; color: var(--accent-color);
  transition: gap 0.2s;
}
.projects .details-link:hover { gap: 10px; color: var(--accent-color); }
.projects .details-link i { font-size: 0.9rem; }

/* Achievement placeholder */
.achievement-placeholder {
  background: linear-gradient(135deg, #3d1010, #120508);
}

/*--------------------------------------------------------------
# Index page portfolio overrides
--------------------------------------------------------------*/
.index-page .projects .portfolio-content {
  border-radius: var(--home-card-radius);
  border: var(--home-card-border);
  box-shadow: var(--home-card-shadow);
  background: var(--surface-color); overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex; flex-direction: column; height: 100%;
}
.index-page .projects .portfolio-content:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 56px color-mix(in srgb, var(--heading-color), transparent 80%);
}

/*--------------------------------------------------------------
# Process Steps
--------------------------------------------------------------*/
.index-page .home-process .process-step {
  border-radius: 18px; border: var(--home-card-border);
  background: var(--surface-color); padding: 20px; height: 100%;
  box-shadow: var(--home-soft-shadow); position: relative; overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.index-page .home-process .process-step::after {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--accent-color), transparent); opacity: 0.5;
}
.index-page .home-process .process-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px color-mix(in srgb, var(--heading-color), transparent 86%);
}
.index-page .home-process .step-number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color); font-weight: 700; margin-bottom: 12px;
}
.index-page .home-process h3 { font-size: 1.05rem; margin-bottom: 8px; }
.index-page .home-process p {
  font-size: 0.9rem; color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0; line-height: 1.6;
}

/*--------------------------------------------------------------
# Compliance / Anti-Hazing Panel
--------------------------------------------------------------*/
/* Compliance Section */
.index-page .home-compliance.section {
  background: linear-gradient(135deg, #120508 0%, #1f0a0a 60%, #2d1010 100%);
  position: relative; overflow: hidden;
}
.index-page .home-compliance.section::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 10% 50%, rgba(201,162,39,0.05), transparent 70%);
  pointer-events: none;
}

/* Badge pill */
.compliance-badge-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,162,39,0.1); border: 1px solid rgba(201,162,39,0.25);
  border-radius: 40px; padding: 6px 16px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent-color);
}

/* Heading */
.compliance-heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800; color: #fff; line-height: 1.15;
  margin: 10px 0 14px;
}
.compliance-intro {
  color: rgba(255,255,255,0.65); font-size: 0.97rem;
  line-height: 1.85; margin-bottom: 0;
}
.compliance-intro strong { color: rgba(255,255,255,0.9); }

/* Checklist */
.compliance-list-block { display: grid; grid-template-columns: 1fr; gap: 8px; align-content: stretch; }
.compliance-list-block .clist-item { align-items: center; }
.clist-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 14px; border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s;
}
.clist-item:hover { background: rgba(255,255,255,0.06); }
.clist-icon {
  width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
  background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.25);
  display: flex; align-items: center; justify-content: center;
  color: #22c55e; font-size: 1.1rem;
}
.clist-item strong {
  display: block; color: #fff; font-size: 0.92rem; margin-bottom: 2px;
}
.clist-item p {
  color: rgba(255,255,255,0.5); font-size: 0.83rem;
  line-height: 1.5; margin: 0;
}

/* Right law box */
.compliance-law-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 1.25rem;
  padding: clamp(18px, 2.2vw, 26px);
  backdrop-filter: blur(6px);
}
.clb-top {
  display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px;
}
.clb-icon-wrap {
  width: 54px; height: 54px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(201,162,39,0.18), rgba(201,162,39,0.06));
  border: 1px solid rgba(201,162,39,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--accent-color);
}
.clb-eyebrow {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent-color); margin-bottom: 4px;
}
.clb-title {
  color: #fff; font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 800; line-height: 1.15; margin: 0;
}
.clb-text {
  color: rgba(255,255,255,0.62); font-size: 0.93rem;
  line-height: 1.85; margin-bottom: 24px;
}
.clb-stats {
  display: grid; gap: 12px; margin-bottom: 24px;
}
.clb-stat {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px; border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
}
.clb-stat i {
  font-size: 1.3rem; color: var(--accent-color); flex-shrink: 0;
}
.clb-stat strong {
  display: block; color: #fff; font-size: 0.9rem;
}
.clb-stat span {
  display: block; color: rgba(255,255,255,0.45); font-size: 0.78rem;
}
.clb-badge {
  display: flex; align-items: center; gap: 10px;
  background: rgba(201,162,39,0.12); border: 1px solid rgba(201,162,39,0.3);
  color: var(--accent-color); font-size: 0.82rem; font-weight: 700;
  padding: 13px 18px; border-radius: 10px; letter-spacing: 0.05em;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# CTA / Verify Section
--------------------------------------------------------------*/
.index-page .home-verify.section {
  position: relative;
  background: linear-gradient(135deg, #1f0a0a 0%, #3d1010 60%, #120508 100%);
  color: var(--contrast-color);
}
.index-page .home-verify.section::before {
  content: ""; position: absolute;
  inset: -20% 10% auto auto; width: 420px; height: 420px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 70%), transparent 70%);
  pointer-events: none;
}
.index-page .home-verify h2,
.index-page .home-verify h3 { color: var(--contrast-color); }
.index-page .home-verify p { color: rgba(255,255,255,0.72); }

.verify-deco {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
}

.verify-deco-icon {
  position: relative;
  z-index: 2;
  font-size: 7rem;
  color: var(--accent-color);
  opacity: 0.22;
  filter: drop-shadow(0 0 28px rgba(201,162,39,0.5));
  animation: verifyGlow 3.5s ease-in-out infinite;
}

@keyframes verifyGlow {
  0%, 100% { opacity: 0.22; filter: drop-shadow(0 0 28px rgba(201,162,39,0.5)); }
  50%       { opacity: 0.38; filter: drop-shadow(0 0 48px rgba(201,162,39,0.75)); }
}

.verify-deco-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(201,162,39,0.18);
  animation: verifyRing 4s ease-in-out infinite;
}

.verify-deco-ring-1 { width: 140px; height: 140px; animation-delay: 0s; }
.verify-deco-ring-2 { width: 200px; height: 200px; animation-delay: 0.8s; }
.verify-deco-ring-3 { width: 260px; height: 260px; animation-delay: 1.6s; border-color: rgba(201,162,39,0.08); }

@keyframes verifyRing {
  0%, 100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 0.25; transform: translate(-50%, -50%) scale(1.04); }
}


/*--------------------------------------------------------------
# Announcements
--------------------------------------------------------------*/
.index-page .home-announcements.section { background: var(--background-color); }
.announcement-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.announcement-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px color-mix(in srgb, var(--heading-color), transparent 86%);
}

/*--------------------------------------------------------------
# ID Verification Card (search box)
--------------------------------------------------------------*/
.verify-card {
  background: linear-gradient(135deg, #1f0a0a 0%, #3d1010 100%);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(18,5,8,0.3);
}
.verify-field-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.verify-field-value { font-weight: 600; color: var(--heading-color); }

/*--------------------------------------------------------------
# Digital ID Card
--------------------------------------------------------------*/
.digital-id-card {
  background: linear-gradient(160deg, #2a0808 0%, #1a0505 40%, #3d1010 100%);
  border: 1px solid rgba(201,162,39,0.35);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(18,5,8,0.5), 0 0 0 1px rgba(201,162,39,0.1);
  position: relative;
}
.digital-id-card::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 80% 20%, rgba(201,162,39,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(100,10,10,0.3) 0%, transparent 60%);
  pointer-events: none;
}

/* Header strip */
.did-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: linear-gradient(90deg, rgba(18,5,8,0.9), rgba(60,10,10,0.7));
  border-bottom: 2px solid rgba(201,162,39,0.4);
  position: relative;
}
.did-header-logo img {
  width: 48px; height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(201,162,39,0.4));
}
.did-header-text { flex: 1; }
.did-org {
  font-size: 1rem; font-weight: 900;
  color: var(--accent-color);
  letter-spacing: 0.08em;
  text-shadow: 0 0 20px rgba(201,162,39,0.5);
  line-height: 1.1;
}
.did-sub {
  font-size: 0.65rem; font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.did-chapter {
  font-size: 0.72rem; font-weight: 800;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.06em;
  margin-top: 2px;
}
.did-header-badge {
  display: flex; flex-direction: column;
  align-items: center; gap: 2px;
  color: #22c55e;
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.did-header-badge i { font-size: 1.4rem; }

/* Body */
.did-body {
  display: flex;
  gap: 20px;
  padding: 20px 20px 16px;
  position: relative;
}

/* Photo column */
.did-photo-col {
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  flex-shrink: 0;
}
.did-photo {
  width: 90px; height: 110px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid rgba(201,162,39,0.4);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.did-photo-placeholder {
  width: 90px; height: 110px;
  border-radius: 8px;
  border: 2px solid rgba(201,162,39,0.25);
  background: rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: center;
  color: rgba(201,162,39,0.3);
  font-size: 2.5rem;
}
.did-status-badge {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 20px;
  color: #fff;
}

/* Info column */
.did-info-col {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  align-content: start;
}
.did-field { display: flex; flex-direction: column; gap: 2px; }
.did-label {
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(201,162,39,0.7);
}
.did-value {
  font-size: 0.82rem; font-weight: 600;
  color: #fff; line-height: 1.35;
}

/* Footer: ID number bar */
.did-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: rgba(0,0,0,0.35);
  border-top: 1px solid rgba(201,162,39,0.25);
  position: relative;
}
.did-footer-left { display: flex; flex-direction: column; gap: 2px; }
.did-id-label {
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(201,162,39,0.6);
}
.did-id-number {
  font-size: 1.1rem; font-weight: 900;
  color: var(--accent-color);
  letter-spacing: 0.12em;
  text-shadow: 0 0 16px rgba(201,162,39,0.5);
  font-family: var(--heading-font);
}
.did-footer-right {}
.did-qr-placeholder {
  width: 48px; height: 48px;
  border: 1.5px solid rgba(201,162,39,0.25);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(201,162,39,0.35);
  font-size: 1.6rem;
  background: rgba(255,255,255,0.03);
}

/* Website strip */
.did-website {
  text-align: center;
  padding: 6px;
  font-size: 0.6rem; font-weight: 600;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.1em;
  background: rgba(0,0,0,0.2);
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* Mobile: stack photo above info */
@media (max-width: 480px) {
  .did-body { flex-direction: column; align-items: center; }
  .did-photo-col { flex-direction: row; align-items: flex-start; gap: 14px; width: 100%; }
  .did-photo, .did-photo-placeholder { width: 72px; height: 88px; }
  .did-info-col { grid-template-columns: 1fr; width: 100%; }
  .did-header { gap: 10px; padding: 12px 14px; }
  .did-org { font-size: 0.85rem; }
  .did-chapter { font-size: 0.65rem; }
  .did-id-number { font-size: 0.95rem; }
}

/*--------------------------------------------------------------
# About Page
--------------------------------------------------------------*/

/* Mission / Vision cards */
.about-mv-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  padding: 40px 36px;
  background: linear-gradient(135deg, var(--maroon-darkest), var(--maroon-dark));
  border: 1px solid rgba(201,162,39,0.15);
}
.about-mv-card--alt {
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon-mid));
}
.about-mv-accent {
  position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--accent-color), var(--accent-dark));
  border-radius: 4px 0 0 4px;
}
.about-mv-card--alt .about-mv-accent {
  background: linear-gradient(180deg, var(--maroon-light), var(--maroon-base));
}
.about-mv-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(201,162,39,0.12);
  border: 1px solid rgba(201,162,39,0.28);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--accent-color);
  margin-bottom: 18px;
}
.about-mv-label {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.about-mv-title {
  font-size: 1.6rem; font-weight: 800;
  color: #fff; margin: 4px 0 16px;
}
.about-mv-text {
  color: rgba(255,255,255,0.72);
  line-height: 2; font-size: 1rem; margin: 0;
}
.about-mv-bg-icon {
  position: absolute; right: -20px; bottom: -20px;
  font-size: 9rem; color: rgba(255,255,255,0.03);
  line-height: 1; pointer-events: none;
}

/* ── Chapter History section ── */
.about-history-section {
  background: linear-gradient(150deg, #120508 0%, #1f0a0a 50%, #2a0c0c 100%);
  position: relative; overflow: hidden;
}
.about-history-section::before {
  content: "";
  position: absolute; left: -100px; top: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* Logo wrap */
.about-logo-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.about-logo-ring {
  position: absolute; border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: logoRingPulse 4s ease-in-out infinite;
}
.about-logo-ring-1 { width: 260px; height: 260px; border: 1px solid rgba(201,162,39,0.20); animation-delay: 0s; }
.about-logo-ring-2 { width: 340px; height: 340px; border: 1px solid rgba(201,162,39,0.10); animation-delay: 1s; }
.about-logo-ring-3 { width: 420px; height: 420px; border: 1px solid rgba(201,162,39,0.04); animation-delay: 2s; }
@keyframes logoRingPulse {
  0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 0.5; transform: translate(-50%, -50%) scale(1.03); }
}
.about-logo-img {
  width: 320px; max-width: 100%;
  position: relative; z-index: 1;
  filter: drop-shadow(0 0 40px rgba(201,162,39,0.25)) drop-shadow(0 16px 48px rgba(120,0,30,0.5));
}

/* History header */
.about-history-header { margin-bottom: 2rem; }
.about-history-eyebrow {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent-color);
  font-family: var(--nav-font); display: block; margin-bottom: 0.6rem;
}
.about-history-title {
  font-size: 2.2rem; font-weight: 800; color: #fff;
  font-family: var(--heading-font); line-height: 1.1; margin-bottom: 0.5rem;
}
.about-history-subtitle {
  color: rgba(255,255,255,0.4); font-size: 0.92rem; margin: 0;
}

/* History prose block */
.about-history-prose {
  position: relative;
  padding: 1.75rem 1.75rem 1.75rem 2.25rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,162,39,0.12);
  border-left: 3px solid var(--accent-color);
  border-radius: 0 12px 12px 0;
  margin-bottom: 2rem;
}
.about-history-prose::before {
  content: "\F6B0";
  font-family: "bootstrap-icons";
  position: absolute; top: -16px; left: -16px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--accent-color);
  color: #120508; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(201,162,39,0.4);
}
.about-history-prose p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 2;
  color: rgba(255,255,255,0.72);
}
.about-history-prose p::first-letter {
  font-size: 3.8rem; font-weight: 800;
  font-family: var(--heading-font);
  color: var(--accent-color);
  float: left; line-height: 0.78;
  margin: 0.06em 0.1em 0 0;
}

/* History badges row */
.about-history-badges {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
}
.about-founded-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 50px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,162,39,0.25);
  color: #fff; font-size: 0.88rem; font-weight: 600;
  transition: border-color 0.2s, background 0.2s;
}
.about-founded-pill:hover {
  background: rgba(201,162,39,0.08);
  border-color: rgba(201,162,39,0.45);
}
.about-founded-pill i { color: var(--accent-color); }
.about-founded-pill--alt i { color: #86efac; }

/* Core values */
.about-values-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.about-value-card {
  width: 160px;
  padding: 28px 16px 22px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.22s;
  flex-shrink: 0;
}
.about-value-card:hover {
  border-color: rgba(201,162,39,0.4);
  box-shadow: 0 10px 28px rgba(31,10,10,0.1);
  transform: translateY(-4px);
}
.about-value-icon {
  width: 52px; height: 52px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  font-size: 1.1rem;
}

/* Cycle colors: 1=maroon, 2=gold, 3=green, 4=blue, 5=maroon-mid, 6=orange, 7=purple, then repeat */
.about-value-card:nth-child(7n+1) .about-value-icon { background: linear-gradient(135deg,#1f0a0a,#3d1010); color: var(--accent-color); }
.about-value-card:nth-child(7n+2) .about-value-icon { background: linear-gradient(135deg,#3d2800,#c9a227); color: #fff; }
.about-value-card:nth-child(7n+3) .about-value-icon { background: linear-gradient(135deg,#0a2e1a,#1e6b35); color: #6ee08a; }
.about-value-card:nth-child(7n+4) .about-value-icon { background: linear-gradient(135deg,#0a1a3d,#1a3a8a); color: #7eb4f0; }
.about-value-card:nth-child(7n+5) .about-value-icon { background: linear-gradient(135deg,#2d1010,#7b1818); color: #f0c040; }
.about-value-card:nth-child(7n+6) .about-value-icon { background: linear-gradient(135deg,#3d1a00,#a84400); color: #ffa060; }
.about-value-card:nth-child(7n+0) .about-value-icon { background: linear-gradient(135deg,#1a0a2e,#4a1a8a); color: #c4a0f0; }

.about-value-name {
  font-weight: 700; color: var(--maroon-dark); font-size: 0.88rem; line-height: 1.3;
}

@media (max-width: 575px) {
  .about-value-card { width: calc(50% - 8px); }
}

/* Grand Triskelion section */
.about-gt-section {
  background: linear-gradient(135deg, var(--maroon-darkest) 0%, var(--maroon-dark) 60%, var(--maroon-mid) 100%);
  position: relative;
}
.about-gt-section::before {
  content: "";
  position: absolute; right: -60px; top: -60px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(201,162,39,0.07), transparent 65%);
  pointer-events: none;
}
.about-gt-card {
  border-radius: 16px; overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,162,39,0.2);
  backdrop-filter: blur(8px);
}
.about-gt-photo-col {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 36px 24px;
  border-right: 1px solid rgba(201,162,39,0.12);
  height: 100%;
}
.about-gt-photo {
  width: 140px; height: 140px;
  object-fit: cover; border-radius: 50%;
  border: 3px solid var(--accent-color);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
  margin-bottom: 16px;
}
.about-gt-photo-placeholder {
  width: 140px; height: 140px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 3px solid var(--accent-color);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.2); font-size: 3.5rem;
  margin-bottom: 16px;
}
.about-gt-name {
  font-size: 1rem; font-weight: 700;
  color: #fff; margin-bottom: 8px; text-align: center;
}
.about-gt-badge {
  display: inline-block;
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.3);
  color: var(--accent-color);
  font-size: 0.68rem; font-weight: 700;
  padding: 4px 12px; border-radius: 20px;
  letter-spacing: 0.06em; margin-bottom: 12px;
}
.about-gt-meta-row {
  font-size: 0.76rem; color: rgba(255,255,255,0.4);
  text-align: center; margin-top: 4px;
}
.about-gt-message-col {
  padding: 36px 32px;
  display: flex; flex-direction: column; justify-content: center; height: 100%;
}
.about-gt-eyebrow {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-color); margin-bottom: 16px;
}
.about-gt-quote {
  position: relative;
  padding: 20px 20px 20px 44px;
  background: rgba(255,255,255,0.05);
  border-left: 3px solid var(--accent-color);
  border-radius: 0 10px 10px 0;
  margin-bottom: 20px;
}
.about-gt-quote-icon {
  position: absolute; top: 14px; left: 10px;
  font-size: 1.8rem; color: var(--accent-color); opacity: 0.4; line-height: 1;
}
.about-gt-quote p {
  color: rgba(255,255,255,0.75);
  font-style: italic; line-height: 1.85;
  font-size: 0.97rem; margin: 0;
}
.about-gt-sig {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.about-gt-sig-line {
  width: 28px; height: 2px;
  background: var(--accent-color); flex-shrink: 0;
}
.about-gt-sig-name { font-weight: 700; color: #fff; font-size: 0.9rem; }
.about-gt-sig-role { color: rgba(255,255,255,0.4); font-size: 0.82rem; }
.about-gt-empty {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(201,162,39,0.3);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.2); font-size: 2rem;
}

/* ── About Preamble ── */
.about-preamble-section { background: var(--surface-warm); }
.about-preamble-wrap {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 12px 60px rgba(31,10,10,0.12);
  border: 1px solid rgba(201,162,39,0.18);
}
.about-preamble-right {
  background: #fff; padding: 3rem 3rem 2.5rem;
  position: relative; overflow: hidden;
}
.about-preamble-quote-bg {
  position: absolute; top: -0.5rem; left: 1.5rem;
  font-size: 12rem; line-height: 1; font-family: Georgia, serif;
  color: rgba(201,162,39,0.08); pointer-events: none;
  user-select: none; font-weight: 900;
}
.about-preamble-eyebrow {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent-color);
  font-family: var(--nav-font); margin-bottom: 0.4rem;
  position: relative;
}
.about-preamble-org {
  font-size: 1.6rem; font-weight: 800;
  color: var(--maroon-dark); font-family: var(--heading-font);
  margin-bottom: 1.25rem; position: relative; line-height: 1.15;
}
.about-preamble-body {
  font-size: 1.02rem; line-height: 2;
  color: var(--default-color);
  margin-bottom: 1.75rem; position: relative;
}
.about-preamble-attr {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.78rem; color: var(--text-muted); font-style: italic;
}
.about-preamble-attr-line {
  width: 28px; height: 2px; flex-shrink: 0;
  background: var(--accent-color); border-radius: 2px;
}
@media (max-width: 991px) {
  .about-preamble-right { padding: 2rem 1.75rem; }
}

/* ── Stats Bar ── */
.about-stats-section { padding-top: 0; padding-bottom: 0; }
.about-stats-row {
  display: flex; align-items: stretch; flex-wrap: wrap;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(201,162,39,0.2);
  box-shadow: 0 6px 32px rgba(31,10,10,0.08);
  overflow: hidden;
}
.about-stat-item {
  flex: 1; min-width: 140px; text-align: center;
  padding: 2.2rem 1.5rem 1.8rem;
  display: flex; flex-direction: column; align-items: center;
  transition: background 0.2s;
}
.about-stat-item:hover { background: rgba(201,162,39,0.04); }
.about-stat-icon {
  font-size: 1.4rem; color: var(--accent-color);
  margin-bottom: 0.5rem; opacity: 0.8;
}
.about-stat-num {
  display: block; font-size: 2.6rem; font-weight: 800;
  font-family: var(--heading-font); line-height: 1;
  color: var(--maroon-dark);
}
.about-stat-label {
  display: block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted); margin-top: 6px;
}
.about-stat-divider {
  width: 1px; background: linear-gradient(180deg, transparent, rgba(201,162,39,0.3), transparent);
  flex-shrink: 0; margin: 1.2rem 0;
}
@media (max-width: 575px) {
  .about-stats-row { flex-direction: column; }
  .about-stat-divider { width: 80%; height: 1px; margin: 0 auto;
    background: linear-gradient(90deg, transparent, rgba(201,162,39,0.25), transparent);
  }
}

/* ── Chapter Officers ── */
.about-officers-section { background: var(--surface-color); }
.about-officers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 991px) { .about-officers-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 575px)  { .about-officers-grid { grid-template-columns: repeat(2, 1fr); } }
.about-officer-card {
  text-align: center; padding: 1.75rem 1rem 1.5rem;
  border-radius: 16px; background: #fff;
  border: 1px solid var(--border);
  transition: all 0.25s;
}
.about-officer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(31,10,10,0.1);
  border-color: rgba(201,162,39,0.4);
}
.about-officer-photo-wrap {
  width: 88px; height: 88px; border-radius: 50%;
  margin: 0 auto 1rem; overflow: hidden;
  border: 3px solid rgba(201,162,39,0.22);
  box-shadow: 0 4px 16px rgba(31,10,10,0.1);
}
.about-officer-photo { width: 100%; height: 100%; object-fit: cover; }
.about-officer-initials {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; font-weight: 800;
  color: var(--accent-color); font-family: var(--heading-font);
}
.about-officer-name {
  font-weight: 700; font-size: 0.88rem;
  color: var(--heading-color); line-height: 1.3; margin-bottom: 5px;
}
.about-officer-pos {
  font-size: 0.7rem; color: var(--maroon-base); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; line-height: 1.4;
}
.about-officer-alias {
  font-size: 0.78rem; color: var(--text-muted);
  font-style: italic; margin-top: 4px;
}

/* ── Credentials & Compliance ── */
.about-credentials-section { background: var(--surface-warm); }
.about-cred-card {
  background: #fff;
  border: 1px solid rgba(201,162,39,0.2);
  border-top: 3px solid var(--accent-color);
  border-radius: 16px; padding: 2rem;
  box-shadow: 0 4px 24px rgba(31,10,10,0.06);
  height: 100%; display: flex; flex-direction: column;
}
.about-cred-header {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem;
}
.about-cred-icon {
  width: 50px; height: 50px; border-radius: 12px; flex-shrink: 0;
  background: rgba(201,162,39,0.1); border: 1px solid rgba(201,162,39,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--accent-color);
}
.about-cred-eyebrow {
  font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-muted); font-family: var(--nav-font); margin-bottom: 3px;
}
.about-cred-title {
  font-size: 1.1rem; font-weight: 700; color: var(--heading-color); margin: 0;
}
.about-cred-body {
  color: var(--default-color); font-size: 0.93rem; line-height: 1.85; margin: 0;
}
.about-cred-field {
  padding: 0.85rem 1rem; border-radius: 10px;
  background: var(--surface-warm); border: 1px solid var(--border);
}
.about-cred-field-label {
  display: block; font-size: 0.58rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 3px;
}
.about-cred-field-value {
  display: block; font-weight: 700; color: var(--maroon-base);
  font-size: 0.97rem; letter-spacing: 0.04em;
}
.about-compliance-card {
  background: #fff;
  border: 1px solid rgba(34,197,94,0.25);
  border-top: 3px solid #22c55e;
  border-radius: 14px; padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(34,197,94,0.06);
  display: flex; flex-direction: column;
}
.about-compliance-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3);
  color: #16a34a; font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 50px; font-family: var(--nav-font);
  margin-bottom: 0.75rem;
}
.about-compliance-title {
  font-size: 1rem; font-weight: 700; color: var(--heading-color); margin-bottom: 0.5rem;
}
.about-compliance-body {
  font-size: 0.88rem; color: var(--default-color);
  line-height: 1.75; margin-bottom: 0.75rem;
}
.about-compliance-pill {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  color: #15803d; font-family: var(--nav-font);
}
.about-cert-wrap {
  border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(201,162,39,0.25);
  box-shadow: 0 4px 20px rgba(31,10,10,0.08);
}
.about-cert-hint { color: var(--text-muted); font-size: 0.78rem; }
.about-cert-placeholder {
  height: 160px; border-radius: 12px;
  border: 2px dashed rgba(201,162,39,0.25);
  background: #fff;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 6px; color: var(--text-muted); font-size: 0.85rem;
}
.about-cert-placeholder i { font-size: 2rem; color: rgba(201,162,39,0.4); }

/* GT section title on dark bg */
.about-gt-section .section-title h2 { color: #fff; }
.about-gt-section .section-title p { color: rgba(255,255,255,0.5); }
.about-gt-no-msg { color: rgba(255,255,255,0.35); }

/* Mobile */
@media (max-width: 768px) {
  .about-mv-card { padding: 28px 24px; }
  .about-mv-title { font-size: 1.35rem; }
  .about-logo-img { width: 200px; }
  .about-logo-ring-1 { width: 180px; height: 180px; }
  .about-logo-ring-2 { width: 240px; height: 240px; }
  .about-logo-ring-3 { width: 300px; height: 300px; }
  .about-history-title { font-size: 1.7rem; }
  .about-history-prose { padding: 1.4rem 1.4rem 1.4rem 1.75rem; }
  .about-history-prose p::first-letter { font-size: 3rem; }
  .about-gt-photo-col { border-right: none; border-bottom: 1px solid rgba(201,162,39,0.12); padding: 28px 20px; }
  .about-gt-message-col { padding: 24px 20px; }
  .about-cred-card { padding: 1.5rem; }
}


/*--------------------------------------------------------------
# Section Tags & Dividers
--------------------------------------------------------------*/
.section-tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent-color);
  padding: 4px 12px; border-radius: 4px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  margin-bottom: 8px;
}
.section-divider {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--accent-color), transparent);
  border-radius: 3px; margin: 0.6rem 0 1rem;
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.btn-primary {
  background-color: #7b1818; border-color: #7b1818; color: #fff;
}
.btn-primary:hover {
  background-color: #a82222; border-color: #a82222;
}
.btn-outline-primary {
  color: #7b1818; border-color: #7b1818;
}
.btn-outline-primary:hover {
  background-color: #7b1818; border-color: #7b1818; color: #fff;
}

/*--------------------------------------------------------------
# Breadcrumb
--------------------------------------------------------------*/
.breadcrumb-item a { color: rgba(255,255,255,0.65); }
.breadcrumb-item a:hover { color: var(--accent-color); }
.breadcrumb-item.active { color: var(--accent-color); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.35); }

/*--------------------------------------------------------------
# Messages / Alerts
--------------------------------------------------------------*/
.alert-container { margin-top: 80px; }

/*--------------------------------------------------------------
# Scroll Progress Bar
--------------------------------------------------------------*/
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 9999;
  background: linear-gradient(90deg, #7b1818, var(--accent-color), #e6c540);
  width: 0%; transition: width 0.1s linear;
}

/*--------------------------------------------------------------
# Toast
--------------------------------------------------------------*/
#toast-container {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 99998; display: flex; flex-direction: column; gap: 8px;
}
.site-toast {
  padding: 12px 20px; border-radius: 8px; color: #fff;
  font-size: 0.9rem; display: flex; align-items: center; gap: 8px;
  animation: toastIn 0.3s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.site-toast.toast-success { background: #155724; }
.site-toast.toast-error   { background: #721c24; }
@keyframes toastIn  { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }
@keyframes toastOut { from { opacity:1; } to { opacity:0; transform:translateY(10px); } }

/*--------------------------------------------------------------
# Card utilities
--------------------------------------------------------------*/
.card-img-zoom { overflow: hidden; }
.card-img-zoom img { transition: transform 0.4s ease; }
.card-hover:hover .card-img-zoom img { transform: scale(1.05); }
.card-hover { transition: transform 0.22s ease, box-shadow 0.22s ease; }

/*--------------------------------------------------------------
# Login Page
--------------------------------------------------------------*/
.login-page {
  background: #0d0205;
}
.login-page .header {
  --background-color: rgba(13,2,5,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,162,39,0.1);
}
.login-wrapper {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.login-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 15% 50%, rgba(201,162,39,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 85% 50%, rgba(123,24,24,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.login-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c9a227' fill-opacity='0.025'%3E%3Ccircle cx='20' cy='20' r='1'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* Left branding panel */
.login-brand {
  padding: 3rem 3rem 3rem 1rem;
}
.login-brand-title {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  font-family: var(--heading-font);
}
.login-brand-sub {
  color: rgba(255,255,255,0.45);
  font-size: 0.92rem;
  line-height: 1.75;
  max-width: 360px;
  margin-bottom: 2rem;
}
.login-brand-divider {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--accent-color), #e6c540);
  border-radius: 2px;
  margin-bottom: 2rem;
  box-shadow: 0 0 10px rgba(201,162,39,0.5);
}
.login-feature {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.login-feature:last-child { border-bottom: none; }
.login-feature-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-color);
  font-size: 1rem;
}
.login-feature-text {
  color: rgba(255,255,255,0.6);
  font-size: 0.87rem;
  line-height: 1.4;
}
.login-feature-text strong {
  display: block;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  margin-bottom: 1px;
}

/* Login card */
.login-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2.5rem 2.25rem;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
  z-index: 1;
}
.login-card-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #120508, #1f0a0a);
  border: 2px solid rgba(201,162,39,0.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 16px rgba(18,5,8,0.3);
}
.login-card .form-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #444;
  margin-bottom: 6px;
}
.login-card .input-group-text {
  background: #f8f8f8;
  border-color: #e0e0e0;
  color: #888;
}
.login-card .form-control {
  border-color: #e0e0e0;
  font-size: 0.93rem;
  background: #fdfdfd;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.login-card .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.12);
}
.login-card .btn-login {
  background: linear-gradient(135deg, #1a0808, #2d0f0f);
  color: var(--accent-color);
  border: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 0.75rem;
  border-radius: 0.6rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(18,5,8,0.3);
}
.login-card .btn-login:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(18,5,8,0.4);
  color: #f0c040;
}
.card-hover:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(31,10,10,0.14); }

/*--------------------------------------------------------------
# Responsive — Tablet (≤991px)
--------------------------------------------------------------*/
@media (max-width: 991px) {
  /* Hero */
  .hero .info { padding: 110px 0 60px; }
  .hero-pre-label-wrap { padding: 5px 14px; }

  /* Compliance: stack columns with less gap */
  .index-page .home-compliance .row { gap: 0; }
  .compliance-law-box { margin-top: 0; }

  /* Login: hide left branding panel on tablet */
  .login-brand { padding: 2rem 1.5rem; }
  .login-brand-title { font-size: 1.6rem; }
}

/*--------------------------------------------------------------
# Responsive — Mobile (≤768px)
--------------------------------------------------------------*/
@media (max-width: 768px) {
  /* ── Section titles ── */
  .section-title { padding-bottom: 36px; }
  .section-title h2 { font-size: 26px; }
  .section-title h2:before,
  .section-title h2:after { width: 32px; }
  .section-title p { font-size: 0.9rem; }

  /* ── Trust bar ── */
  .index-page .home-trust.section { padding: 24px 0 14px; }
  .index-page .trust-card {
    min-height: 100px;
    padding: 14px 10px;
    gap: 4px;
  }
  .index-page .trust-value { font-size: 1.7rem; }
  .index-page .trust-label { font-size: 0.76rem; }
  .index-page .trust-icon { font-size: 1.15rem; margin-bottom: 2px; }

  /* ── Who We Are ── */
  .index-page .home-why .icon-box {
    padding: 16px;
    gap: 12px;
    border-radius: 14px;
  }
  .index-page .home-why .icon-box i {
    width: 44px; height: 44px; font-size: 1.15rem; border-radius: 12px;
  }
  .index-page .home-why .icon-box h3 { font-size: 0.98rem; }
  .index-page .home-why .icon-box p { font-size: 0.85rem; }

  /* ── Achievements grid ── */
  .projects .portfolio-info { padding: 16px; }
  .projects .portfolio-title { font-size: 0.97rem; }
  .projects .portfolio-info p { font-size: 0.84rem; }

  /* ── Compliance ── */
  .compliance-heading { font-size: 1.55rem; }
  .compliance-intro { font-size: 0.9rem; }
  .compliance-badge-pill { font-size: 0.68rem; padding: 5px 13px; }
  .clist-item { padding: 10px 12px; gap: 10px; }
  .clist-icon { width: 32px; height: 32px; font-size: 0.95rem; border-radius: 7px; }
  .clist-item strong { font-size: 0.87rem; }
  .clist-item p { font-size: 0.8rem; }
  .compliance-law-box { padding: 18px; border-radius: 1rem; margin-top: 8px; }
  .clb-top { gap: 12px; margin-bottom: 14px; }
  .clb-icon-wrap { width: 44px; height: 44px; font-size: 1.3rem; border-radius: 10px; }
  .clb-title { font-size: 1.15rem; }
  .clb-text { font-size: 0.87rem; line-height: 1.7; margin-bottom: 14px; }
  .clb-badge { font-size: 0.77rem; padding: 10px 14px; }

  /* ── Verify CTA ── */
  .index-page .home-verify.section { padding: 52px 0; }
  .index-page .home-verify h2 { font-size: 1.55rem; }
  .index-page .home-verify p { font-size: 0.88rem; }

  /* ── Announcements ── */
  .index-page .home-announcements .section-title { padding-bottom: 28px; }
  .announcement-card .card-body { padding: 14px; }

  /* ── Page title banner ── */
  .page-title { padding: 130px 0 55px; }
  .page-title h1 { font-size: 32px; }
  .page-title .breadcrumbs ol { font-size: 14px; }

  /* ── Footer ── */
  .footer .footer-top { padding: 40px 0 32px; }
  .footer-brand-logo { width: 52px; height: 52px; }
  .footer-brand-name { font-size: 0.95rem; }
  .footer-heading { font-size: 0.73rem; margin-bottom: 14px; }
  .footer-bottom { text-align: center; }
  .footer-bottom .d-flex { justify-content: center !important; flex-direction: column; align-items: center; gap: 6px !important; }

  /* ── Login page ── */
  .login-brand { display: none; }
  .login-wrapper { padding: 20px 0; }
  .login-card { padding: 2rem 1.5rem; border-radius: 1rem; }
}

/*--------------------------------------------------------------
# Responsive — Small Mobile (≤575px)
--------------------------------------------------------------*/
@media (max-width: 575px) {
  /* ── Hero ── */
  .hero .info { padding: 90px 0 48px; }
  .hero-pre-label-wrap { padding: 5px 11px; gap: 7px; }
  .hero-pre-label { font-size: 0.62rem; letter-spacing: 0.1em; }
  .hero-scroll-hint { font-size: 1.2rem; bottom: 18px; }

  /* ── Trust bar: 2×2 tighter ── */
  .index-page .trust-card { min-height: 88px; padding: 12px 8px; }
  .index-page .trust-value { font-size: 1.5rem; gap: 3px; }
  .index-page .trust-label { font-size: 0.7rem; }
  .index-page .trust-icon { display: none; }

  /* ── Section titles ── */
  .section-title h2 { font-size: 22px; }
  .section-title h2:before,
  .section-title h2:after { width: 24px; margin: 0 8px 10px; }

  /* ── Who We Are: single column ── */
  .index-page .home-why .row > [class*="col-md-6"] { width: 100%; }

  /* ── Compliance ── */
  .compliance-heading { font-size: 1.35rem; line-height: 1.25; }
  .compliance-list-block { gap: 6px; }
  .clist-item { padding: 9px 10px; gap: 9px; }
  .clb-badge { flex-direction: column; text-align: center; gap: 6px; font-size: 0.73rem; }

  /* ── Verify CTA ── */
  .index-page .home-verify.section { padding: 44px 0; }
  .index-page .home-verify h2 { font-size: 1.4rem; }
  .index-page .home-verify .btn { width: 100%; justify-content: center; }

  /* ── Announcement cards: full width image height ── */
  .announcement-card .card-body { padding: 12px; }

  /* ── Page title ── */
  .page-title { padding: 115px 0 48px; }
  .page-title h1 { font-size: 27px; }

  /* ── Section action button: full width ── */
  .section-action .btn { width: 100%; max-width: 320px; }

  /* ── Footer ── */
  .footer-brand-logo { width: 44px; height: 44px; }
  .fic-card { padding: 8px 12px; }
  .footer-info-cards { gap: 8px; }

  /* ── Scroll top ── */
  .scroll-top { width: 36px; height: 36px; right: 12px; bottom: 12px; }
}
