/* ============================================================================
    FSIA — main.css
    Global stylesheet: design tokens, typography, resets, layout,
    and all shared chrome (announcement bar, top bar, navigation,
    mobile header, footer, dropdowns).
    Loaded on EVERY page. Brand: crimson #A6093D / gold #D4AF37.
    Fonts: 'Playfair Display' (headings), 'Poppins' (body).
    ============================================================================ */

/* ----------------------------------------------------------------------------
    1. DESIGN TOKENS, RESET, TYPOGRAPHY, BASE LAYOUT
    ---------------------------------------------------------------------------- */
:root {
  --primary: #A6093D;
  --accent: #D4AF37;
  --secondary: rgba(0, 0, 0, .05);
  --bg: #FFFBFD;
  --text: #333;
  --text-light: #666
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #f5f0ff 0%, #fff0f7 100%);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
  color: var(--text)
}

a {
  text-decoration: none;
  color: inherit;
  transition: all .3s
}

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

.container {
  width: min(1100px, 94%);
  margin: 0 auto
}

/* CUSTOM ANIMATIONS - UNIQUE PER CATEGORY */
@keyframes diamondShimmer {

  0%,
  100% {
    filter: brightness(1) drop-shadow(0 0 0 rgba(212, 175, 55, 0))
  }

  50% {
    filter: brightness(1.12) drop-shadow(0 0 6px rgba(212, 175, 55, .5))
  }
}

@keyframes shimmerFlow {
  shimmerFlow_KEYFRAMES
}

@keyframes slideInGraceful {
  from {
    opacity: 0;
    transform: translateY(-50px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes cascadeIn {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes customGlow {

  0%,
  100% {
    text-shadow: 0 2px 16px rgba(0, 0, 0, .6)
  }

  50% {
    text-shadow: 0 2px 24px rgba(0, 0, 0, .7)
  }
}

@keyframes hoverLift {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

header {
  background: linear-gradient(135deg, #f5f0ff, #fff0f7);
  border-bottom: 2px solid var(--primary);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 60;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
  animation: slideInGraceful .8s ease-out
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .5rem 0
}

.logo {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem
}

.logo img {
  width: 50px;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.6));
  animation: diamondShimmer 4s ease-in-out infinite
}

.nav-links {
  display: flex;
  gap: 2rem
}

.nav-links a {
  color: var(--text);
  font-weight: 500
}

.nav-links a:hover {
  color: var(--primary);
  transform: translateY(-2px)
}

.hero {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  padding: 80px 0;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: slideInGraceful 1s ease-out
}

.hero::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 5%;
  font-size: 3rem;
  opacity: .15;
  animation: diamondShimmer 6s infinite
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 20%;
  right: 5%;
  font-size: 3rem;
  opacity: .15;
  animation: diamondShimmer 8s 1s infinite
}

.hero-content {
  position: relative;
  z-index: 1
}

.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 1rem;
  animation: customGlow 2.5s infinite;
  letter-spacing: 2px;
  font-weight: 700
}

.hero p {
  font-size: 1.2rem;
  opacity: .95;
  margin-bottom: 2rem;
  animation: slideInGraceful .8s ease-out .2s both
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
  flex-wrap: wrap
}

.stat {
  animation: cascadeIn .8s ease-out;
  animation-fill-mode: both
}

.stat:nth-child(1) {
  animation-delay: .3s
}

.stat:nth-child(2) {
  animation-delay: .5s
}

.stat:nth-child(3) {
  animation-delay: .7s
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  display: block;
  color: var(--accent)
}

@keyframes shimmer {
  0% {
    background-position: -100%
  }

  50% {
    background-position: 100%
  }

  100% {
    background-position: -100%
  }
}

.requirements {
  background: linear-gradient(135deg, rgba(0, 0, 0, .03), rgba(0, 0, 0, .01));
  padding: 2rem;
  border-radius: 16px;
  margin: 2rem 0;
  border-left: 4px solid var(--accent);
  animation: cascadeIn .8s ease-out
}

.requirements h3 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-weight: 700;
  animation: customGlow 2.5s infinite
}

.req-list {
  list-style: none;
  padding: 0
}

.req-list li {
  padding: .8rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-light);
  line-height: 1.6;
  animation: cascadeIn .6s ease-out;
  animation-fill-mode: both;
  font-weight: 500
}

.req-list li:nth-child(1) {
  animation-delay: .2s
}

.req-list li:nth-child(2) {
  animation-delay: .3s
}

.req-list li:nth-child(3) {
  animation-delay: .4s
}

.req-list li:nth-child(4) {
  animation-delay: .5s
}

.req-list li:nth-child(5) {
  animation-delay: .6s
}

.req-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.2rem;
  animation: diamondShimmer 3s infinite
}

.info-box {
  background: linear-gradient(135deg, rgba(0, 0, 0, .03), rgba(0, 0, 0, .01));
  padding: 2rem;
  border-radius: 16px;
  margin: 2rem 0;
  border-left: 4px solid var(--accent);
  animation: cascadeIn .8s ease-out .2s both
}

.info-box h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 700;
  animation: customGlow 2.5s infinite
}

.info-box p {
  color: var(--text-light);
  margin-bottom: .5rem;
  font-weight: 500
}

.info-box a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline
}

.info-box a:hover {
  color: var(--accent)
}

footer {
  background: linear-gradient(135deg, var(--text), #555);
  color: #fff;
  padding: 3rem 0;
  margin-top: 5rem;
  text-align: center;
  font-size: .9rem;
  animation: slideInGraceful 1s ease-out
}

footer p {
  margin: .5rem 0;
  opacity: .9
}

footer a {
  color: var(--accent);
  font-weight: 600
}

@media(max-width:768px) {
  .hero {
    padding: 44px 0 36px
  }

  .hero h1 {
    font-size: clamp(1.6rem, 7vw, 2rem);
    line-height: 1.22;
    padding: 0 .4rem
  }

  .hero p {
    font-size: .96rem;
    padding: 0 .6rem
  }

  .hero-stats {
    gap: 1.4rem
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0
  }

  .form-container {
    padding: 1.6rem 1.2rem;
    border-radius: 16px
  }

  .section-title {
    font-size: 1.6rem
  }

  .form-header h2 {
    font-size: 1.45rem
  }

  .section-header {
    font-size: 1.1rem;
    margin: 1.6rem 0 1.1rem
  }

  .form-group {
    margin-bottom: 1.3rem
  }

  .form-group label {
    font-size: .95rem;
    margin-bottom: .55rem
  }

  .submit-btn {
    width: 100%;
    padding: 1.15rem;
    font-size: 1.02rem
  }

  .checkbox-group {
    padding: 1.1rem;
    align-items: flex-start
  }

  .checkbox-group input {
    margin-top: .15rem;
    flex-shrink: 0
  }

  .requirements,
  .info-box {
    padding: 1.4rem
  }

  .nav-links {
    display: none
  }
}

/* very small phones */
@media(max-width:380px) {
  .hero h1 {
    font-size: 1.5rem
  }

  .form-container {
    padding: 1.3rem 1rem
  }

  .hero-stats {
    gap: 1rem;
    flex-wrap: wrap
  }
}

/* ----------------------------------------------------------------------------
   2-6. SHARED CHROME — header, mobile header, footer, dropdowns, contact bar
   ---------------------------------------------------------------------------- */
/* --- FSIA live-site header v3 --- */
.fsia-announce {
  background: #1a0a0f;
  color: #fff;
  padding: .5rem 1rem;
  text-align: center;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1.4
}

.fsia-announce a {
  color: #D4AF37;
  text-decoration: none
}

.fsia-announce a:hover {
  text-decoration: underline
}

/* ── top utility bar ── */
.fsia-topbar {
  background: #f8f9fa;
  border-bottom: 1px solid #e8e3e3;
  padding: .55rem 0
}

.fsia-topbar .tb-wrap {
  width: min(1200px, 94%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: nowrap
}

.tb-contact {
  display: flex;
  gap: 1.2rem;
  flex-shrink: 0
}

.tb-contact a {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .76rem;
  font-weight: 600;
  color: #3A2226;
  text-decoration: none;
  white-space: nowrap
}

.tb-contact a:hover {
  color: #A6093D
}

.tb-contact .ic {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.tb-contact .ic-phone {
  background: #A6093D;
  color: #fff
}

.tb-contact .ic-mail {
  background: #D4AF37;
  color: #fff
}

.fsia-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  flex-shrink: 0
}

.fsia-logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  padding: 3px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4), 0 0 0 2px rgba(212, 175, 55, 0.2);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fsia-logo:hover img {
  transform: scale(1.1) rotate(5deg);
}

.fsia-logo .lg-text strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: .95rem;
  color: #A6093D;
  font-weight: 700;
  display: block;
  line-height: 1.15;
  white-space: nowrap
}

.fsia-logo .lg-text span {
  font-size: .58rem;
  color: #B8962E;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap
}

.tb-socials {
  display: flex;
  gap: .4rem;
  flex-shrink: 0
}

.tb-socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7A5E63;
  text-decoration: none;
  transition: all .2s;
  flex-shrink: 0
}

.tb-socials a:hover {
  background: #A6093D;
  border-color: #A6093D;
  color: #fff
}

/* ── main sticky nav ── */
.fsia-nav-wrap {
  background: #fff;
  border-bottom: 2px solid #A6093D;
  position: sticky;
  top: 0;
  z-index: 70;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .08)
}

.fsia-nav {
  width: min(1200px, 94%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 50px;
  gap: 0;
  overflow: visible
}

.fsia-nav-logo {
  display: none;
  flex-shrink: 0
}

/* The links container — KEY FIX: flex row, nowrap, overflow visible */
.fsia-nav-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  flex: 1;
  overflow: visible;
  flex-wrap: nowrap
}

.fsia-nav-links a,
.fsia-nav-links button.nav-item {
  color: #3A2226;
  font-weight: 600;
  font-size: .8rem;
  padding: .3rem .55rem;
  border: none;
  background: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  font-family: 'Poppins', sans-serif;
  transition: color .2s;
  height: 50px;
  display: flex;
  align-items: center;
  line-height: 1
}

.fsia-nav-links a:hover,
.fsia-nav-links button.nav-item:hover {
  color: #A6093D
}

/* underline on hover — fixed bottom value */
.fsia-nav-links a::after,
.fsia-nav-links button.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: .55rem;
  right: .55rem;
  height: 2px;
  background: #A6093D;
  transform: scaleX(0);
  transition: transform .2s;
  transform-origin: center
}

.fsia-nav-links a:hover::after,
.fsia-nav-links button.nav-item:hover::after {
  transform: scaleX(1)
}

/* Registration dropdown */
.fsia-reg {
  position: relative;
  height: 50px;
  display: flex;
  align-items: center
}

.fsia-reg-btn {
  display: flex;
  align-items: center;
  gap: .25rem;
  height: 50px
}

.fsia-reg-btn svg {
  transition: transform .25s;
  flex-shrink: 0
}

.fsia-reg:hover .fsia-reg-btn svg,
.fsia-reg:focus-within .fsia-reg-btn svg {
  transform: rotate(180deg)
}

.fsia-reg-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid rgba(166, 9, 61, .15);
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .18);
  padding: 1rem;
  min-width: 620px;
  grid-template-columns: 1fr 1fr;
  gap: .15rem;
  z-index: 200;
  margin-top: 2px
}

.fsia-reg:hover .fsia-reg-menu,
.fsia-reg:focus-within .fsia-reg-menu {
  display: grid
}

.fsia-reg-menu a {
  color: #3A2226;
  font-size: .78rem;
  font-weight: 500;
  padding: .5rem .75rem;
  border-radius: 8px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: all .15s;
  white-space: nowrap;
  height: auto;
  line-height: 1.4
}

.fsia-reg-menu a::after {
  display: none !important
}

.fsia-reg-menu a:hover {
  background: #FEF0F4;
  color: #A6093D
}

.fsia-reg-menu .rm-head {
  grid-column: 1/-1;
  font-size: .67rem;
  font-weight: 700;
  color: #B8962E;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .75rem .5rem;
  border-bottom: 1px solid rgba(212, 175, 55, .3);
  margin-bottom: .2rem
}

/* Apply Now CTA */
.fsia-cta-btn {
  margin-left: auto;
  color: #fff !important;
  background: linear-gradient(135deg, #FF3366, #FF9933) !important;
  padding: .6rem 1.4rem;
  border-radius: 99px;
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(255, 51, 102, 0.3), inset 0 -2px 0 rgba(0, 0, 0, 0.15) !important;
  transition: all .3s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  line-height: 1
}

.fsia-cta-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 51, 102, 0.5), inset 0 -2px 0 rgba(0, 0, 0, 0.1) !important;
  filter: brightness(1.1);
}

.fsia-cta-btn::after {
  display: none !important
}

.fsia-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #A6093D;
  padding: .3rem;
  flex-shrink: 0;
  margin-left: .5rem
}

/* ── search + quick-nav strip ── */
.fsia-strip {
  background: #fff;
  border-bottom: 1px solid #eeebeb;
  padding: .55rem 0
}

.fsia-strip .st-wrap {
  width: min(1200px, 94%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: nowrap
}

.fsia-search {
  position: relative;
  flex-shrink: 0;
  width: 210px
}

.fsia-search input {
  width: 100%;
  padding: .45rem .85rem .45rem 2rem;
  border: 1.5px solid #e0d9d9;
  border-radius: 99px;
  font-size: .78rem;
  background: #f9f7f7;
  outline: none;
  font-family: inherit;
  transition: border .2s
}

.fsia-search input:focus {
  border-color: #D4AF37;
  background: #fff
}

.fsia-search svg {
  position: absolute;
  left: .65rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9a8a8a;
  pointer-events: none
}

.fsia-quicknav {
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  min-width: 0
}

.fsia-quicknav::-webkit-scrollbar {
  display: none
}

.fsia-quicknav-inner {
  display: flex;
  gap: .45rem;
  white-space: nowrap;
  padding: .05rem 0
}

.fsia-quicknav-inner a {
  display: inline-flex;
  align-items: center;
  padding: .34rem .8rem;
  border-radius: 99px;
  font-size: .72rem;
  font-weight: 600;
  border: 1.5px solid #e0d9d9;
  color: #3A2226;
  text-decoration: none;
  transition: all .18s;
  flex-shrink: 0;
  white-space: nowrap
}

.fsia-quicknav-inner a:hover,
.fsia-quicknav-inner a.active {
  background: #A6093D;
  border-color: #A6093D;
  color: #fff
}

.fsia-quicknav-inner a.gold {
  border-color: #D4AF37;
  color: #B8962E
}

.fsia-quicknav-inner a.gold:hover {
  background: #D4AF37;
  border-color: #D4AF37;
  color: #fff
}

/* ── responsive ── */
@media(max-width:1100px) {

  /* shrink font slightly so everything fits one row */
  .fsia-nav-links a,
  .fsia-nav-links button.nav-item {
    font-size: .75rem;
    padding: .3rem .42rem
  }

  .tb-contact a {
    font-size: .72rem
  }
}

@media(max-width:900px) {

  /* mobile: hamburger mode */
  .fsia-hamburger {
    display: flex;
    align-items: center;
    justify-content: center
  }

  .fsia-nav-logo {
    display: flex
  }

  .fsia-nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid rgba(166, 9, 61, .12);
    padding: .8rem 5%;
    gap: 0;
    box-shadow: 0 16px 30px rgba(0, 0, 0, .12);
    max-height: 80vh;
    overflow-y: auto;
    z-index: 200
  }

  .fsia-nav-links.open {
    display: flex
  }

  .fsia-nav-links a,
  .fsia-nav-links button.nav-item {
    height: auto;
    padding: .9rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    font-size: .9rem;
    width: 100%;
    justify-content: flex-start
  }

  .fsia-nav-links a::after,
  .fsia-nav-links button.nav-item::after {
    display: none
  }

  .fsia-reg {
    height: auto;
    width: 100%
  }

  .fsia-reg-menu {
    position: static;
    transform: none;
    min-width: 0;
    width: 100%;
    border: none;
    box-shadow: none;
    border-radius: 8px;
    padding: .3rem .8rem;
    background: #fef9fb;
    display: none;
    grid-template-columns: 1fr;
    margin-top: 0
  }

  .fsia-reg:focus-within .fsia-reg-menu,
  .fsia-reg-menu.mob-open {
    display: grid
  }

  .fsia-cta-btn {
    display: none
  }

  .tb-contact,
  .tb-socials {
    display: none
  }

  .fsia-search {
    width: 100%
  }

  .fsia-strip .st-wrap {
    flex-direction: column;
    align-items: stretch;
    gap: .6rem
  }
}

@media(max-width:480px) {
  .fsia-quicknav-inner a {
    font-size: .68rem;
    padding: .3rem .65rem
  }
}

/* --- fsia header specificity fix --- */
/* Beat the global a{color:inherit} rule on all header link elements */
.fsia-nav-links a,
.fsia-nav-links button.nav-item,
.fsia-reg-menu a,
.fsia-quicknav-inner a,
.fsia-topbar .tb-contact a,
.fsia-topbar .tb-socials a,
.fsia-cta-btn,
.fsia-announce a {
  color: inherit;
}

/* reset first, then re-set below */

.fsia-nav-links a {
  color: #3A2226 !important;
  border: none !important;
  border-radius: 0 !important;
  background: none !important;
  padding: .3rem .55rem !important;
  display: flex !important;
  align-items: center !important;
  height: 50px !important;
  font-size: .8rem !important;
  font-weight: 600 !important;
  white-space: nowrap !important;
  text-decoration: none !important;
}

.fsia-nav-links a:hover,
.fsia-nav-links button.nav-item:hover {
  color: #A6093D !important;
}

.fsia-reg-menu a {
  color: #3A2226 !important;
  background: none !important;
  border: none !important;
  border-radius: 8px !important;
  padding: .5rem .75rem !important;
  font-size: .78rem !important;
  display: flex !important;
  align-items: center !important;
  gap: .4rem !important;
  text-decoration: none !important;
  height: auto !important;
}

.fsia-reg-menu a:hover {
  background: #FEF0F4 !important;
  color: #A6093D !important;
}

.fsia-topbar .tb-contact a {
  color: #3A2226 !important;
  text-decoration: none !important;
  font-size: .76rem !important;
  font-weight: 600 !important;
}

.fsia-topbar .tb-contact a:hover {
  color: #A6093D !important;
}

.fsia-topbar .tb-socials a {
  color: #7A5E63 !important;
  text-decoration: none !important;
}

.fsia-topbar .tb-socials a:hover {
  color: #fff !important;
  background: #A6093D !important;
}

.fsia-announce a {
  color: #D4AF37 !important;
  text-decoration: none !important;
}

.fsia-announce a:hover {
  text-decoration: underline !important;
}


/* Quicknav pills — needs !important to beat a{color:inherit} */
.fsia-quicknav-inner a {
  display: inline-flex !important;
  align-items: center !important;
  padding: .36rem .85rem !important;
  border-radius: 99px !important;
  font-size: .73rem !important;
  font-weight: 600 !important;
  border: 1.5px solid #d8d0d0 !important;
  color: #3A2226 !important;
  text-decoration: none !important;
  background: #fff !important;
  transition: all .18s !important;
  flex-shrink: 0 !important;
  white-space: nowrap !important;
}

.fsia-quicknav-inner a:hover,
.fsia-quicknav-inner a.active {
  background: #A6093D !important;
  border-color: #A6093D !important;
  color: #fff !important;
}

.fsia-quicknav-inner a.gold {
  border-color: #D4AF37 !important;
  color: #B8962E !important;
  background: #fff !important;
}

.fsia-quicknav-inner a.gold:hover {
  background: #D4AF37 !important;
  border-color: #D4AF37 !important;
  color: #fff !important;
}

/* Nav bar - white background with crimson underline, overriding any old header gradient */
.fsia-nav-wrap {
  background: #fff !important;
  border-bottom: 2px solid #A6093D !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 70 !important;
}

.fsia-topbar {
  background: #f8f9fa !important;
}

.fsia-strip {
  background: #fff !important;
}

@media(max-width:1100px) {
  .fsia-nav-links a {
    font-size: .75rem !important;
    padding: .3rem .42rem !important;
  }
}

@media(max-width:900px) {
  .fsia-nav-links a {
    height: auto !important;
    padding: .9rem 0 !important;
    font-size: .9rem !important;
    border-bottom: 1px solid rgba(0, 0, 0, .06) !important;
    width: 100% !important;
  }

  .fsia-nav-links a.fsia-cta-btn {
    display: none !important;
  }
}


/* Hide entire topbar on mobile — nav bar has its own logo */
@media(max-width:900px) {
  .fsia-topbar {
    display: none !important;
  }

  .fsia-announce {
    font-size: .7rem !important;
    padding: .5rem .8rem !important;
    line-height: 1.5 !important;
  }

  .fsia-strip .st-wrap {
    flex-direction: column !important;
    gap: .55rem !important;
  }

  .fsia-search {
    width: 100% !important;
  }

  .fsia-search input {
    width: 100% !important;
  }
}

/* Fix hero on mobile — remove large padding that causes the colour gap */
@media(max-width:640px) {
  .hero {
    padding: 24px 0 20px !important;
    animation: none !important;
  }

  .hero-content {
    padding: 0 !important;
  }

  /* poster/crown wraps should not add extra vertical space */
  .poster-wrap,
  .crown-scene,
  .banner-wrap {
    margin-bottom: .6rem !important;
  }

  /* section title spacing */
  .section-title {
    margin-top: 1.2rem !important;
    margin-bottom: 1.4rem !important;
    font-size: 1.5rem !important;
  }
}

/* --- MOBILE HEADER — matches live site --- */
@media(max-width:900px) {

  /* ── Announcement: compact ticker ── */
  .fsia-announce {
    font-size: .72rem !important;
    padding: .45rem .7rem !important;
    line-height: 1.4 !important
  }

  /* ── Hide the utility topbar entirely ── */
  .fsia-topbar {
    display: none !important
  }

  /* ── Nav bar: single row logo | socials | hamburger ── */
  .fsia-nav-wrap {
    position: sticky !important;
    top: 0 !important;
    z-index: 70 !important;
    background: #fff !important;
    border-bottom: 1px solid #eee !important;
    box-shadow: 0 1px 8px rgba(0, 0, 0, .08) !important
  }

  .fsia-nav {
    height: auto !important;
    padding: .55rem 4% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: .5rem !important
  }

  /* Logo in nav — show on mobile */
  .fsia-nav-logo {
    display: flex !important;
    align-items: center !important;
    gap: .5rem !important;
    text-decoration: none !important;
    flex-shrink: 0 !important
  }

  .fsia-nav-logo img {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    object-fit: contain !important;
    padding: 2px !important;
    background: #fff !important;
    box-shadow: 0 2px 8px rgba(166, 9, 61, .18) !important
  }

  .fsia-nav-logo .lg-text strong {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: .88rem !important;
    color: #A6093D !important;
    font-weight: 700 !important;
    display: block !important;
    line-height: 1.1 !important;
    white-space: nowrap !important
  }

  .fsia-nav-logo .lg-text span {
    display: none !important
  }

  /* Social icons inside nav on mobile — show FB/YT/IG as colored circles */
  .fsia-nav-socials {
    display: flex !important;
    align-items: center !important;
    gap: .4rem !important;
    margin-left: auto !important
  }

  .fsia-nav-socials a {
    width: 34px !important;
    height: 34px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    flex-shrink: 0 !important
  }

  .fsia-nav-socials .soc-fb {
    background: #1877F2 !important;
    color: #fff !important
  }

  .fsia-nav-socials .soc-yt {
    background: #FF0000 !important;
    color: #fff !important
  }

  .fsia-nav-socials .soc-ig {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
    color: #fff !important
  }

  /* Hamburger */
  .fsia-hamburger {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: .3rem !important;
    flex-shrink: 0 !important
  }

  /* Hide desktop nav links (shown only when .open) */
  .fsia-nav-links {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    background: #fff !important;
    border-top: 2px solid #A6093D !important;
    padding: .6rem 4% !important;
    flex-direction: column !important;
    gap: 0 !important;
    box-shadow: 0 16px 30px rgba(0, 0, 0, .14) !important;
    max-height: 80vh !important;
    overflow-y: auto !important;
    z-index: 200 !important
  }

  .fsia-nav-links.open {
    display: flex !important
  }

  .fsia-nav-links a,
  .fsia-nav-links button.nav-item {
    height: auto !important;
    padding: .88rem 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, .07) !important;
    font-size: .9rem !important;
    width: 100% !important;
    justify-content: flex-start !important;
    color: #3A2226 !important;
    background: none !important;
    border-radius: 0 !important
  }

  .fsia-nav-links a::after,
  .fsia-nav-links button.nav-item::after {
    display: none !important
  }

  .fsia-reg {
    height: auto !important;
    width: 100% !important
  }

  .fsia-reg-menu {
    position: static !important;
    transform: none !important;
    min-width: 0 !important;
    width: 100% !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 8px !important;
    padding: .3rem 0 .3rem .8rem !important;
    background: #fef9fb !important;
    grid-template-columns: 1fr !important;
    margin-top: 0 !important;
    display: none !important
  }

  .fsia-reg:focus-within .fsia-reg-menu,
  .fsia-reg-menu.mob-open {
    display: grid !important
  }

  /* Hide CTA */
  .fsia-cta-btn {
    display: none !important
  }

  /* ── Strip: search full width + pills scroll ── */
  .fsia-strip {
    padding: .5rem 0 !important
  }

  .fsia-strip .st-wrap {
    flex-direction: column !important;
    gap: .5rem !important;
    padding: 0 4% !important
  }

  .fsia-search {
    width: 100% !important
  }

  .fsia-search input {
    width: 100% !important;
    font-size: 14px !important
  }

  /* ── Hero: flush, no padding gap ── */
  .hero {
    padding: 0 !important;
    animation: none !important
  }

  .hero-content {
    padding: 0 !important
  }

  .banner-wrap {
    border-radius: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    border: none !important;
    max-width: 100% !important
  }

  .banner-img {
    width: 100% !important;
    height: auto !important;
    display: block !important
  }

  .crown-scene {
    border-radius: 0 !important;
    margin: 0 !important;
    max-width: 100% !important
  }

  .crown-wrap {
    border-radius: 0 !important;
    box-shadow: none !important
  }

  .poster-wrap {
    border-radius: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
    box-shadow: none !important
  }

  /* hero-stats below banner */
  .hero-stats {
    padding: 1rem 4% .6rem !important;
    background: #fff !important
  }

  /* ── Section title + content ── */
  .section-title {
    font-size: 1.6rem !important;
    margin: 1.4rem 0 .6rem !important
  }
}

/* Extra small phones */
@media(max-width:380px) {
  .fsia-nav-logo .lg-text strong {
    font-size: .78rem !important
  }

  .fsia-nav-socials a {
    width: 30px !important;
    height: 30px !important
  }
}

/* --- Contact Account Manager bar --- */
.contact-manager-bar {
  display: none
}

@media(max-width:900px) {
  .contact-manager-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d7a1f;
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
    justify-content: center;
    align-items: center;
    padding: .95rem 1rem;
    z-index: 60;
    text-decoration: none;
    letter-spacing: .02em
  }

  body {
    padding-bottom: 56px
  }

  /* prevent content hiding behind bar */
}

/* --- FSIA live footer v4 — matches fsia.in dark footer --- */
.fsia-footer {
  background: #1a1a2e;
  color: #ccc;
  padding: 2.8rem 0 1.4rem;
  margin-top: 3rem;
  font-family: 'Poppins', sans-serif;
  position: relative
}

.fsia-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('') center/cover no-repeat;
  opacity: .12;
  pointer-events: none
}

.fsia-footer .ft-inner {
  width: min(1100px, 92%);
  margin: 0 auto
}

.fsia-footer .ft-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1)
}

/* Column headings */
.fsia-footer h4 {
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid #A6093D;
  display: inline-block
}

/* Links */
.fsia-footer a {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: #bbb;
  text-decoration: none;
  font-size: .82rem;
  margin-bottom: .55rem;
  transition: color .2s
}

.fsia-footer a:hover {
  color: #fff
}

.fsia-footer a::before {
  content: '›';
  color: #A6093D;
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0
}

/* Registration dropdown in footer */
.fsia-footer .ft-dropdown summary {
  list-style: none;
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .6rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid #A6093D;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  cursor: pointer;
  user-select: none
}

.fsia-footer .ft-dropdown summary::-webkit-details-marker {
  display: none
}

.fsia-footer .ft-dropdown summary::after {
  content: '▾';
  color: #D4AF37;
  transition: transform .25s;
  margin-left: .3rem
}

.fsia-footer .ft-dropdown[open] summary::after {
  transform: rotate(180deg)
}

.fsia-footer .ft-dropdown a {
  font-size: .78rem;
  margin-bottom: .4rem
}

/* Get in Touch */
.fsia-footer .ft-contact a::before {
  display: none
}

.fsia-footer .ft-contact a {
  align-items: flex-start;
  gap: .6rem;
  color: #ccc;
  font-size: .82rem
}

.fsia-footer .ft-contact a:hover {
  color: #fff
}

.fsia-footer .ft-contact .ft-icon {
  width: 18px;
  flex-shrink: 0;
  margin-top: .1rem;
  color: #A6093D
}

/* Social links */
.fsia-footer .ft-socials {
  display: flex;
  gap: .6rem;
  margin-top: .4rem;
  flex-wrap: wrap
}

.fsia-footer .ft-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  margin: 0;
  padding: 0;
  font-size: .75rem
}

.fsia-footer .ft-socials a::before {
  display: none
}

.fsia-footer .ft-socials a:hover {
  background: #A6093D;
  border-color: #A6093D;
  color: #fff
}

.fsia-footer .ft-socials a svg {
  flex-shrink: 0
}

/* Copyright */
.fsia-footer .ft-copy {
  text-align: center;
  padding-top: 1.2rem;
  font-size: .78rem;
  color: #888
}

.fsia-footer .ft-copy a {
  display: inline;
  color: #D4AF37;
  font-weight: 600
}

.fsia-footer .ft-copy a::before {
  display: none
}

/* Mobile: 2 col quick-links, then 1 col rest */
@media(max-width:760px) {
  .fsia-footer .ft-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem
  }

  .fsia-footer .ft-col-reg {
    grid-column: 1/-1
  }
}

@media(max-width:480px) {
  .fsia-footer .ft-grid {
    grid-template-columns: 1fr
  }

  .fsia-footer .ft-col-reg {
    grid-column: auto
  }

  .fsia-footer h4 {
    font-size: .95rem
  }
}

/* --- dropdown fix v5 (click-based) --- */
/* Header Registration dropdown — JS toggles .reg-open */
.fsia-reg-menu {
  display: none !important
}

.fsia-reg.reg-open .fsia-reg-menu {
  display: grid !important
}

.fsia-reg:hover .fsia-reg-menu {
  display: grid !important
}

/* desktop hover still works */
.fsia-reg-btn svg {
  transition: transform .25s
}

.fsia-reg.reg-open .fsia-reg-btn svg {
  transform: rotate(180deg)
}

@media(max-width:900px) {

  /* On mobile: only JS .reg-open shows it (no hover) */
  .fsia-reg:hover .fsia-reg-menu {
    display: none !important
  }

  .fsia-reg.reg-open .fsia-reg-menu {
    display: grid !important
  }
}

/* Footer Registration — make it look clearly expandable + show links when open */
.ft-dropdown>div {
  display: none;
  padding-top: .5rem
}

.ft-dropdown[open]>div {
  display: block
}

.ft-dropdown summary {
  cursor: pointer
}

/* --- footer fix v5 --- */
.fsia-footer .ft-dropdown>div {
  display: none
}

.fsia-footer .ft-dropdown[open]>div {
  display: block
}

.fsia-footer .ft-dropdown a {
  display: flex !important;
  color: #bbb !important;
  font-size: .8rem !important;
  margin-bottom: .5rem !important
}

.fsia-footer .ft-dropdown a:hover {
  color: #fff !important
}

.fsia-footer .ft-grid {
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  gap: 2rem
}

@media(max-width:760px) {
  .fsia-footer .ft-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem
  }

  .fsia-footer .ft-col-reg {
    grid-column: 1/-1
  }
}

@media(max-width:480px) {
  .fsia-footer .ft-grid {
    grid-template-columns: 1fr
  }

  .fsia-footer .ft-col-reg {
    grid-column: auto
  }
}

/* --- nav-socials desktop hide --- */
.fsia-nav-socials {
  display: none
}

@media(max-width:900px) {
  .fsia-nav-socials {
    display: flex !important
  }
}

/* --- mobile view navigation fixes --- */
.fsia-mobile-cta-btn {
  display: none !important;
}

@media(max-width:900px) {
  .fsia-mobile-cta-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: linear-gradient(120deg, #A6093D, #7E0B30) !important;
    color: #fff !important;
    padding: .85rem 1.4rem !important;
    border-radius: 99px !important;
    font-weight: 700 !important;
    font-size: .82rem !important;
    text-align: center !important;
    margin: 1.1rem 0 .5rem 0 !important;
    box-shadow: 0 4px 14px rgba(166, 9, 61, 0.28) !important;
    text-transform: uppercase;
    letter-spacing: .08em;
    width: 100% !important;
    box-sizing: border-box !important;
    transition: all .2s;
  }

  .fsia-mobile-cta-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
  }
}

/* Hide social icons inside header on extremely narrow viewports (e.g. <360px) to prevent layout wrapping */
@media(max-width:360px) {
  .fsia-nav-socials {
    display: none !important;
  }
}

/* ============================================================
   Floating action buttons — WhatsApp + sticky Register
   (fixed so they never drop below the footer)
   ============================================================ */
.float-wa {
  position: fixed !important;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #fff;
  z-index: 1200;
  box-shadow: 0 10px 24px -6px rgba(37, 211, 102, .55), 0 4px 12px rgba(0, 0, 0, .18);
  transition: transform .15s ease, box-shadow .2s ease;
}

.float-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -6px rgba(37, 211, 102, .65), 0 6px 14px rgba(0, 0, 0, .2);
}

.float-wa svg {
  width: 30px;
  height: 30px;
}

.sticky-reg {
  position: fixed !important;
  left: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: 1200;
  width: auto;
  padding: 13px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
  border: 1px solid rgba(212, 175, 55, .5);
  background: linear-gradient(135deg, #A6093D 0%, #7a062c 100%);
  box-shadow: 0 10px 24px -6px rgba(166, 9, 61, .5), inset 0 1px 0 rgba(255, 255, 255, .25);
  transition: transform .15s ease, filter .2s ease, box-shadow .2s ease;
}

.sticky-reg:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

/* On small phones keep the register pill clear of the WhatsApp circle */
@media (max-width:560px) {
  .sticky-reg {
    left: 16px;
    right: 84px;
    text-align: center;
    padding: 14px 16px;
  }
}

/* ============================================================================
   FIX: Complete layout override for Assistance CTA Module on Mobile Viewports
   ============================================================================ */
@media (max-width: 900px) {

  /* Collapse parent Tailwind/Flex column stretching layouts */
  #fsia-support-module .space-y-5,
  #fsia-support-module div[class*="space-y"] {
    height: auto !important;
    min-height: unset !important;
  }

  .form-section {
    overflow-x: hidden;
  }

  /* Target exact module layouts identified from your DOM tree */
  #fsia-support-module .fsia-support-cta {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    align-self: flex-start !important;
    height: auto !important;
    min-height: unset !important;
    max-height: none !important;
    gap: 20px !important;
    padding: 22px 20px !important;
  }

  /* Soften block margins inside the container box */
  #fsia-support-module .fsia-support-cta-text {
    margin: 0 !important;
    height: auto !important;
  }
}