/* ==========================================================================
   The Falsyd Foundation School — Theme
   ========================================================================== */

:root {
  --navy-900: #081a33;
  --navy-800: #0d2748;
  --navy-700: #123561;
  --navy-600: #1a4680;
  --navy-500: #2558a0;
  --gold-500: #e3a325;
  --gold-600: #c98a12;
  --gold-100: #fbeed2;
  --ink-900: #172130;
  --ink-700: #3a4553;
  --ink-500: #5b6675;
  --gray-100: #f5f7fa;
  --gray-200: #eaedf2;
  --gray-300: #dde1e8;
  --white: #ffffff;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(8, 26, 51, 0.06);
  --shadow-md: 0 12px 30px rgba(8, 26, 51, 0.12);
  --shadow-lg: 0 24px 60px rgba(8, 26, 51, 0.18);
  --container: 1200px;
  --font-head: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-700);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--navy-900);
  line-height: 1.25;
  margin: 0 0 16px;
  font-weight: 600;
}
p { margin: 0 0 16px; }
button { font-family: inherit; cursor: pointer; }
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section, .section { padding: 90px 0; }
@media (max-width: 767px) {
  section, .section { padding: 56px 0; }
}
.section-eyebrow {
  display: inline-block;
  color: var(--gold-600);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 10px;
}
.section-title {
  max-width: 680px;
  margin-bottom: 48px;
}
.section-title.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-title h2 { font-size: clamp(28px, 3.4vw, 40px); }
.section-title p { color: var(--ink-500); font-size: 17px; margin-top: 8px; }
.bg-light { background: var(--gray-100); }
.bg-navy { background: var(--navy-900); color: rgba(255,255,255,.85); }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: var(--white); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn-gold { background: var(--gold-500); color: var(--navy-900); }
.btn-gold:hover { background: var(--gold-600); transform: translateY(-2px); }
.btn-outline { border-color: rgba(255,255,255,.5); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-navy { background: var(--navy-800); color: var(--white); }
.btn-navy:hover { background: var(--navy-700); transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 14px; }

/* Grid helpers */
.grid { display: grid; gap: 30px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 991px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 599px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Top utility bar
   ========================================================================== */
.topbar {
  background: var(--navy-900);
  color: rgba(255,255,255,.8);
  font-size: 14px;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 9px;
  padding-bottom: 9px;
  flex-wrap: wrap;
  gap: 10px;
}
.topbar-contacts { display: flex; gap: 26px; flex-wrap: wrap; }
.topbar-contacts a { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.85); }
.topbar-contacts a:hover { color: var(--gold-500); }
.topbar-contacts i { color: var(--gold-500); }
.topbar-social { display: flex; gap: 14px; }
.topbar-social a {
  width: 30px; height: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
  font-size: 13px;
  transition: background .2s, color .2s;
}
.topbar-social a:hover { background: var(--gold-500); color: var(--navy-900); }
@media (max-width: 640px) { .topbar-contacts { display: none; } .topbar .container { justify-content: center; } }

/* ==========================================================================
   Main navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 58px; width: 58px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { font-family: var(--font-head); color: var(--navy-900); font-size: 18px; font-weight: 700; }
.brand-text span { font-size: 12px; letter-spacing: 1.5px; color: var(--gold-600); font-weight: 600; text-transform: uppercase; }

.main-nav ul { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  display: inline-block;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-700);
  border-radius: 100px;
  transition: background .2s, color .2s;
}
.main-nav a:hover, .main-nav li.active a {
  background: var(--navy-900);
  color: var(--white);
}
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-toggle {
  display: none;
  border: none;
  background: var(--navy-900);
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  font-size: 18px;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .nav-cta .btn-gold { display: none; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 0; right: -300px;
    width: 280px;
    height: 100vh;
    background: var(--navy-900);
    padding: 100px 24px 24px;
    transition: right .3s ease;
    box-shadow: var(--shadow-lg);
  }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .main-nav a { color: rgba(255,255,255,.85); padding: 14px 18px; }
  .main-nav a:hover, .main-nav li.active a { background: rgba(255,255,255,.1); color: var(--white); }
  .nav-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(8,26,51,.55);
    z-index: 499;
  }
  .nav-overlay.open { display: block; }
  .nav-close {
    display: block;
    position: absolute;
    top: 22px; right: 22px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 22px;
  }
}
.nav-close { display: none; }

/* ==========================================================================
   Hero slider (home)
   ========================================================================== */
.hero {
  position: relative;
  height: 640px;
  overflow: hidden;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
}
.hero-slide.active { opacity: 1; visibility: visible; }
.hero-slide::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(8,20,40,.86) 0%, rgba(8,20,40,.55) 48%, rgba(8,20,40,.25) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 640px; color: var(--white); }
.hero-content .section-eyebrow { color: var(--gold-500); }
.hero-content h1 {
  color: var(--white);
  font-size: clamp(34px, 5vw, 54px);
  margin-bottom: 18px;
}
.hero-content p { font-size: 18px; color: rgba(255,255,255,.85); max-width: 520px; }
.hero-actions { display: flex; gap: 16px; margin-top: 28px; flex-wrap: wrap; }
.hero-dots {
  position: absolute;
  bottom: 30px; left: 0; right: 0;
  z-index: 3;
  display: flex; justify-content: center; gap: 10px;
}
.hero-dots button {
  width: 10px; height: 10px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.7);
  background: transparent;
  padding: 0;
}
.hero-dots button.active { background: var(--gold-500); border-color: var(--gold-500); }
@media (max-width: 767px) { .hero { height: 560px; } }

/* Inner page hero banner */
.page-hero {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}
.page-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,20,40,.75), rgba(8,20,40,.75)); }
.page-hero-content { position: relative; z-index: 2; width: 100%; text-align: center; color: var(--white); }
.page-hero-content h1 { color: var(--white); margin-bottom: 10px; font-size: clamp(30px, 4vw, 44px); }
.breadcrumbs { display: flex; justify-content: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,.75); }
.breadcrumbs a { color: rgba(255,255,255,.75); }
.breadcrumbs a:hover { color: var(--gold-500); }
.breadcrumbs .sep { opacity: .6; }
.breadcrumbs .current { color: var(--gold-500); }

/* ==========================================================================
   About / welcome
   ========================================================================== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; height: 420px; object-fit: cover; }
.about-media .badge-card {
  position: absolute;
  bottom: -26px; right: -26px;
  background: var(--navy-900);
  color: var(--white);
  padding: 22px 26px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 140px;
}
.about-media .badge-card strong { display: block; font-size: 30px; color: var(--gold-500); font-family: var(--font-head); }
.about-media .badge-card span { font-size: 13px; letter-spacing: .5px; }
.about-copy .section-eyebrow { margin-bottom: 12px; }
.about-copy p { color: var(--ink-500); }
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 70px 0; }
  .about-media { margin-bottom: 10px; }
}

/* value / feature cards */
.value-cards { margin-top: 60px; }
.value-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.value-card .num {
  position: absolute; top: 24px; right: 26px;
  font-family: var(--font-head); font-weight: 700;
  font-size: 30px; color: var(--gray-200);
}
.value-card .icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--gold-100);
  color: var(--gold-600);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.value-card h3 { font-size: 19px; margin-bottom: 8px; }
.value-card p { color: var(--ink-500); font-size: 15px; margin: 0; }

/* ==========================================================================
   Stats / counters
   ========================================================================== */
.stats-band {
  background: var(--navy-900);
  background-image: linear-gradient(120deg, var(--navy-900), var(--navy-700));
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-item { color: var(--white); }
.stat-item .icon { font-size: 30px; color: var(--gold-500); margin-bottom: 14px; }
.stat-item .num { font-family: var(--font-head); font-size: 40px; font-weight: 700; color: var(--white); display: block; }
.stat-item .label { color: rgba(255,255,255,.7); font-size: 15px; letter-spacing: .5px; }
@media (max-width: 767px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; } }

/* ==========================================================================
   Events
   ========================================================================== */
.event-card {
  display: flex;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px;
  border: 1px solid var(--gray-200);
  transition: box-shadow .25s ease, transform .25s ease;
}
.event-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.event-card .thumb {
  flex: 0 0 120px;
  height: 120px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.event-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.event-card .body { flex: 1; min-width: 0; }
.event-date-pill {
  display: inline-block;
  background: var(--gold-100);
  color: var(--gold-600);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .5px;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.event-card h4 { font-size: 17px; margin-bottom: 6px; }
.event-card p { font-size: 14.5px; color: var(--ink-500); margin: 0; }

/* ==========================================================================
   Services
   ========================================================================== */
.service-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: transform .25s ease, box-shadow .25s ease;
  height: 100%;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card .thumb { position: relative; height: 200px; overflow: hidden; }
.service-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.service-card:hover .thumb img { transform: scale(1.08); }
.service-card .icon-badge {
  position: absolute;
  bottom: -22px; left: 24px;
  width: 52px; height: 52px;
  background: var(--gold-500);
  color: var(--navy-900);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-sm);
}
.service-card .body { padding: 36px 24px 26px; }
.service-card h3 { font-size: 19px; margin-bottom: 10px; }
.service-card p { color: var(--ink-500); font-size: 15px; margin: 0; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-slider { position: relative; max-width: 780px; margin: 0 auto; }
.testimonial-track { overflow: hidden; }
.testimonial-slides { display: flex; transition: transform .5s ease; }
.testimonial-slide { flex: 0 0 100%; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 44px 40px;
  text-align: center;
}
.testimonial-card i.quote { font-size: 26px; color: var(--gold-500); margin-bottom: 18px; }
.testimonial-card p.quote-text { font-size: 18px; color: var(--ink-700); font-style: italic; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 22px; }
.testimonial-author img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.testimonial-author .name { font-weight: 700; color: var(--navy-900); font-size: 15px; }
.testimonial-author .role { font-size: 13px; color: var(--ink-500); }
.testimonial-stars { color: var(--gold-500); font-size: 13px; margin-top: 6px; }
.testimonial-nav { display: flex; justify-content: center; gap: 14px; margin-top: 30px; }
.testimonial-nav button {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--gray-300);
  background: var(--white);
  color: var(--navy-900);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
.testimonial-nav button:hover { background: var(--navy-900); color: var(--white); border-color: var(--navy-900); }

/* ==========================================================================
   Video CTA
   ========================================================================== */
.video-cta {
  position: relative;
  height: 380px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.video-cta::before { content: ""; position: absolute; inset: 0; background: rgba(8,20,40,.6); }
.video-cta-content { position: relative; z-index: 2; color: var(--white); }
.play-btn {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--navy-900);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 0 rgba(227,163,37,.6);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(227,163,37,.55); }
  70% { box-shadow: 0 0 0 22px rgba(227,163,37,0); }
  100% { box-shadow: 0 0 0 0 rgba(227,163,37,0); }
}
.video-cta-content span { font-weight: 600; letter-spacing: .5px; font-size: 17px; }

/* video modal */
.video-modal {
  position: fixed; inset: 0;
  background: rgba(6,14,28,.9);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.video-modal.open { display: flex; }
.video-modal-inner { width: 100%; max-width: 900px; aspect-ratio: 16/9; position: relative; }
.video-modal-inner iframe { width: 100%; height: 100%; border-radius: var(--radius-md); border: none; }
.video-modal-close {
  position: absolute; top: -46px; right: 0;
  background: none; border: none; color: var(--white); font-size: 26px;
}

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.gallery-filters button {
  border: 1px solid var(--gray-300);
  background: var(--white);
  color: var(--ink-700);
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  transition: background .2s, color .2s, border-color .2s;
}
.gallery-filters button.active, .gallery-filters button:hover {
  background: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-900);
}
.gallery-grid {
  column-count: 3;
  column-gap: 20px;
}
@media (max-width: 991px) { .gallery-grid { column-count: 2; } }
@media (max-width: 560px) { .gallery-grid { column-count: 1; } }
.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: var(--shadow-sm);
}
.gallery-item img { width: 100%; display: block; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(8,20,40,.75) 0%, rgba(8,20,40,0) 55%);
  opacity: 0;
  transition: opacity .25s ease;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay span { color: var(--white); font-size: 13px; font-weight: 600; letter-spacing: .5px; }
.gallery-item.hidden { display: none; }

.lightbox {
  position: fixed; inset: 0;
  background: rgba(5,12,24,.95);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 85vh; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,.1);
  border: none;
  color: var(--white);
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  transition: background .2s;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--gold-500); color: var(--navy-900); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) {
  .lightbox-prev, .lightbox-next { width: 40px; height: 40px; font-size: 15px; }
  .lightbox-prev { left: 10px; } .lightbox-next { right: 10px; }
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 50px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card {
  background: var(--navy-900);
  background-image: linear-gradient(150deg, var(--navy-900), var(--navy-700));
  color: rgba(255,255,255,.85);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
}
.contact-info-card h3 { color: var(--white); }
.contact-info-row { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.contact-info-row:last-of-type { border-bottom: none; }
.contact-info-row .icon {
  width: 46px; height: 46px; flex: 0 0 46px;
  border-radius: 12px;
  background: rgba(227,163,37,.15);
  color: var(--gold-500);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.contact-info-row h5 { color: var(--white); font-size: 14px; margin: 0 0 4px; text-transform: uppercase; letter-spacing: .5px; }
.contact-info-row span { font-size: 15px; color: rgba(255,255,255,.75); }
.contact-hours { margin-top: 24px; padding-top: 20px; border-top: 1px dashed rgba(255,255,255,.2); }
.contact-hours span { display: block; font-size: 14px; color: rgba(255,255,255,.7); }
.contact-hours strong { color: var(--white); }

.contact-form { background: var(--white); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.form-grid .full { grid-column: 1 / -1; }
.form-field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink-700); margin-bottom: 8px; }
.form-field input, .form-field textarea {
  width: 100%;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink-900);
  background: var(--gray-100);
  transition: border-color .2s, background .2s;
}
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  background: var(--white);
}
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); margin-top: 50px; }
.map-embed iframe { width: 100%; height: 380px; border: none; display: block; }

.gform-embed { border-radius: var(--radius-md); overflow: hidden; background: var(--gray-100); box-shadow: var(--shadow-sm); }
.gform-embed iframe { width: 100%; height: 1000px; border: none; display: block; }
.gform-fallback { margin-top: 14px; font-size: 14px; color: var(--ink-500); }
.gform-fallback a { color: var(--navy-800); font-weight: 600; text-decoration: underline; }
@media (max-width: 600px) { .gform-embed iframe { height: 1200px; } }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.7); }
.footer-top { padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 50px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-brand img { height: 50px; width: 50px; }
.footer-brand strong { color: var(--white); font-family: var(--font-head); font-size: 17px; }
.footer-col h4 { color: var(--white); font-size: 16px; margin-bottom: 22px; position: relative; padding-bottom: 12px; }
.footer-col h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 36px; height: 2px; background: var(--gold-500); }
.footer-col p { font-size: 14.5px; line-height: 1.8; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 14.5px; color: rgba(255,255,255,.7); transition: color .2s, padding-left .2s; }
.footer-links a:hover { color: var(--gold-500); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 16px; font-size: 14.5px; }
.footer-contact-item i { color: var(--gold-500); margin-top: 3px; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 14px;
  transition: background .2s;
}
.footer-social a:hover { background: var(--gold-500); color: var(--navy-900); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 22px 0;
  text-align: center;
  font-size: 13.5px;
  color: rgba(255,255,255,.55);
}
.footer-bottom strong { color: rgba(255,255,255,.8); }

/* Back to top */
.back-to-top {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s, transform .25s, visibility .25s;
  z-index: 400;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--gold-500); color: var(--navy-900); }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* misc */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.two-col-media { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
@media (max-width: 767px) { .two-col-media { grid-template-columns: 1fr; } }
.timeline-note {
  border-left: 3px solid var(--gold-500);
  padding: 4px 0 4px 20px;
  color: var(--ink-500);
  font-size: 15px;
  margin-top: 18px;
}
