/* ==========================================================================
   RES-Q Official Stylesheet
   Built by Experience. Driven by Hope.
   Brand Guidelines & Pixel-Perfect Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap');

:root {
  /* Official RES-Q Brand Colors */
  --resq-navy-dark: #08121D;
  --resq-navy: #0F233A;
  --resq-navy-card: #132B45;
  --resq-navy-hover: #193657;
  --resq-navy-border: rgba(255, 255, 255, 0.12);

  --resq-gold: #C8820A;
  --resq-gold-hover: #AF7006;
  --resq-gold-light: #E2B16A;
  --resq-gold-pale: #F1D8B5;
  --resq-gold-dark: #715935;
  --resq-gold-glow: rgba(200, 130, 10, 0.25);

  --resq-bg-cream: #FBF8F3;
  --resq-bg-sand: #F4EEE5;
  --resq-bg-card-sand: #EFE8DD;
  --resq-card-border: #E5DDD1;
  --resq-blue-light: #EEF2F6;
  --resq-blue-light-border: #D6E0EA;

  --resq-text-dark: #0F233A;
  --resq-text-body: #3E4B5B;
  --resq-text-muted: #6B7B8E;
  --resq-text-white: #FFFFFF;
  --resq-text-light-muted: #B4C2D1;

  /* Typography */
  --font-serif: "Georgia Pro", Georgia, "Playfair Display", "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Transitions & Shadows */
  --transition-smooth: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 10px 30px rgba(15, 35, 58, 0.08);
  --shadow-hover: 0 16px 36px rgba(15, 35, 58, 0.14);
  --shadow-dark-card: 0 10px 30px rgba(0, 0, 0, 0.35);
}

/* ==========================================================================
   Base & Reset
   ========================================================================== */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-sans);
  color: var(--resq-text-body);
  background-color: #FFFFFF;
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--resq-text-dark);
  font-weight: 400;
  line-height: 1.25;
}

.text-serif {
  font-family: var(--font-serif) !important;
}

.text-gold {
  color: var(--resq-gold) !important;
}

.gold-italic {
  color: var(--resq-gold);
  font-style: italic;
  font-weight: inherit;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--resq-gold);
  margin-bottom: 0.85rem;
}

.section-title {
  font-size: 2.75rem;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.1rem;
  }
}

.section-subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--resq-text-muted);
  max-width: 820px;
}

.section-subtitle.light {
  color: var(--resq-text-light-muted);
}

/* ==========================================================================
   Buttons & Links
   ========================================================================== */
.btn-resq-gold {
  background-color: var(--resq-gold);
  color: #FFFFFF !important;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.6rem;
  border-radius: 4px;
  border: 1px solid var(--resq-gold);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-resq-gold:hover {
  background-color: var(--resq-gold-hover);
  border-color: var(--resq-gold-hover);
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px var(--resq-gold-glow);
}

.btn-resq-outline-white {
  background-color: transparent;
  color: #FFFFFF !important;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.6rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-resq-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: #FFFFFF;
  color: #FFFFFF !important;
  transform: translateY(-2px);
}

.btn-resq-outline-gold {
  background-color: transparent;
  color: var(--resq-gold) !important;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.65rem 1.4rem;
  border-radius: 4px;
  border: 1px solid var(--resq-gold);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-resq-outline-gold:hover {
  background-color: var(--resq-gold);
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px var(--resq-gold-glow);
}

/* ==========================================================================
   Top Crisis Alert Bar
   ========================================================================== */
.top-alert-bar {
  background-color: var(--resq-gold);
  color: #FFFFFF;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.65rem 1rem;
  text-align: center;
  position: relative;
  z-index: 1030;
}

.top-alert-bar a {
  color: #FFFFFF;
  text-decoration: underline;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.top-alert-bar a:hover {
  opacity: 0.85;
}

/* ==========================================================================
   Main Navbar & Sticky Header
   ========================================================================== */
header.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1025;
}

.resq-navbar {
  background-color: #FFFFFF;
  padding: 0.75rem 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition-smooth);
}

.resq-navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.resq-logo {
  height: 58px;
  width: auto;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.resq-logo:hover {
  transform: scale(1.02);
}

.resq-nav-link {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--resq-text-dark) !important;
  padding: 0.5rem 0.85rem !important;
  position: relative;
  transition: color 0.2s ease;
  text-decoration: none;
}

.resq-nav-link:hover {
  color: var(--resq-gold) !important;
}

.resq-nav-link.active {
  color: var(--resq-gold) !important;
  font-weight: 600;
}

.resq-nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0.85rem;
  right: 0.85rem;
  height: 2px;
  background-color: var(--resq-gold);
  border-radius: 2px;
}

/* Mobile Offcanvas / Toggler */
.navbar-toggler {
  border: 1px solid rgba(15, 35, 58, 0.2);
  padding: 0.4rem 0.65rem;
}

.navbar-toggler:focus {
  box-shadow: none;
  border-color: var(--resq-gold);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  background-color: var(--resq-navy-dark);
  background-image: linear-gradient(135deg, rgba(8, 18, 29, 0.94) 0%, rgba(15, 35, 58, 0.85) 60%, rgba(8, 18, 29, 0.95) 100%), url('../Images/Main Banner-01.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #FFFFFF;
  padding: 5.5rem 0 5rem 0;
  min-height: 580px;
  display: flex;
  align-items: center;
}

.hero-title {
  font-size: 3.4rem;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 1.4rem;
  letter-spacing: -0.02em;
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 2.6rem;
  }
  .hero-section {
    padding: 3.5rem 0;
  }
}

.hero-lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-wheel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 1rem;
}

.hero-wheel-img {
  max-width: 100%;
  height: auto;
  max-height: 480px;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.45));
  transition: transform 0.4s ease;
}

.hero-wheel-img:hover {
  transform: scale(1.02);
}

/* ==========================================================================
   Founder Section: Who is Adam Bugden
   ========================================================================== */
.founder-section {
  background-color: var(--resq-bg-cream);
  padding: 5.5rem 0;
}

.founder-photo-wrapper {
  position: relative;
  text-align: center;
}

.founder-photo-card {
  position: relative;
  display: inline-block;
  background-color: var(--resq-gold);
  padding: 0;
  border-radius: 4px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  max-width: 380px;
  width: 100%;
}

.founder-photo-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.founder-caption {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--resq-gold);
  margin-top: 1.25rem;
  letter-spacing: -0.01em;
}

.founder-quote-box {
  border-left: 4px solid var(--resq-gold);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

.founder-quote-text {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  line-height: 1.35;
  color: var(--resq-text-dark);
  font-weight: 600;
  margin: 0;
}

@media (max-width: 768px) {
  .founder-quote-text {
    font-size: 1.35rem;
  }
}

.founder-bio p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--resq-text-body);
  margin-bottom: 1.1rem;
}

.founder-tagline {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--resq-text-dark);
  margin-top: 1.5rem;
}

/* ==========================================================================
   Recognition & Credentials Section
   ========================================================================== */
.credentials-section {
  position: relative;
  background-color: #F8F5F0;
  background-image: linear-gradient(to bottom, rgba(248, 245, 240, 0.92) 0%, rgba(248, 245, 240, 0.7) 40%, rgba(248, 245, 240, 0.95) 100%), url('../Images/Recognition-01.jpg');
  background-size: cover;
  background-position: center top;
  padding: 5.5rem 0 6rem 0;
}

.credential-card {
  background: #FFFFFF;
  border-radius: 6px;
  padding: 2.2rem 1.8rem;
  height: 100%;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(226, 177, 106, 0.25);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: var(--transition-smooth);
}

.credential-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--resq-gold);
}

.credential-icon-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1.5px solid var(--resq-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  background-color: rgba(226, 177, 106, 0.08);
}

.credential-icon-circle img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.credential-subtitle {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--resq-gold);
  margin-bottom: 0.4rem;
}

.credential-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--resq-text-dark);
  line-height: 1.35;
  margin-bottom: 0.9rem;
}

.credential-desc {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--resq-text-muted);
  margin-bottom: 0;
}

/* ==========================================================================
   About RES-Q (8 R's) Section
   ========================================================================== */
.about-resq-section {
  position: relative;
  background-color: var(--resq-navy-dark);
  background-image: linear-gradient(180deg, rgba(8, 18, 29, 0.95) 0%, rgba(15, 35, 58, 0.88) 50%, rgba(8, 18, 29, 0.96) 100%), url('../Images/About Resq Image-01.jpg');
  background-size: cover;
  background-position: center right;
  color: #FFFFFF;
  padding: 5.5rem 0 6rem 0;
}

.about-resq-section .section-title {
  color: #FFFFFF;
}

.rs-card {
  background: rgba(19, 43, 69, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 1.75rem 1.5rem;
  height: 100%;
  transition: var(--transition-smooth);
}

.rs-card:hover {
  background: rgba(25, 54, 87, 0.9);
  border-color: rgba(200, 130, 10, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.rs-number {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--resq-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.rs-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 0.2rem;
}

.rs-quote {
  font-size: 0.88rem;
  font-style: italic;
  color: var(--resq-gold-light);
  margin-bottom: 0.75rem;
}

.rs-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--resq-text-light-muted);
  margin-bottom: 0;
}

/* ==========================================================================
   Oil Sands & Industrial (A Dedicated Focus)
   ========================================================================== */
.dedicated-focus-section {
  position: relative;
  background-color: var(--resq-bg-cream);
  padding: 5.5rem 0 5rem 0;
  overflow: hidden;
}

.topo-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.04;
  background-image: radial-gradient(#0F233A 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.focus-hero-img-wrap {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.focus-hero-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* Stat Blocks */
.stat-box {
  padding: 1rem 0.5rem;
  border-top: 3px solid var(--resq-gold);
  margin-bottom: 2rem;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--resq-gold);
  line-height: 1;
  margin-bottom: 0.6rem;
}

.stat-text {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--resq-text-body);
  margin-bottom: 0;
}

/* 4 Feature Cards */
.focus-card {
  background-color: var(--resq-bg-sand);
  border: 1px solid var(--resq-card-border);
  border-radius: 6px;
  padding: 1.6rem 1.4rem;
  height: 100%;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  transition: var(--transition-smooth);
}

.focus-card:hover {
  background-color: #FFFFFF;
  border-color: var(--resq-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.focus-card-icon-wrap {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 50%;
  border: 1px solid rgba(200, 130, 10, 0.4);
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.focus-card-icon-wrap img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.focus-card-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--resq-text-dark);
  margin-bottom: 0.4rem;
}

.focus-card-desc {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--resq-text-body);
  margin-bottom: 0;
}

/* ==========================================================================
   How RES-Q Helps (Numbered Rows)
   ========================================================================== */
.how-helps-section {
  background-color: var(--resq-navy);
  color: #FFFFFF;
  padding: 5.5rem 0 6rem 0;
}

.how-helps-section .section-title {
  color: #FFFFFF;
}

.service-row {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 1.8rem 0;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.service-row:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.service-row:hover {
  background: rgba(255, 255, 255, 0.03);
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.service-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--resq-gold);
  line-height: 1;
  min-width: 80px;
}

.service-divider {
  width: 1px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 1.8rem;
}

.service-content {
  flex: 1;
}

.service-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 0.3rem;
}

.service-desc {
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--resq-text-light-muted);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .service-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .service-divider {
    display: none;
  }
  .service-num {
    font-size: 2rem;
  }
}

/* ==========================================================================
   Course Catalog Section
   ========================================================================== */
.catalog-section {
  background-color: var(--resq-bg-cream);
  padding: 5.5rem 0 6rem 0;
}

.catalog-card {
  background: #FFFFFF;
  border-radius: 6px;
  padding: 1.8rem 1.5rem;
  height: 100%;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--resq-card-border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
  cursor: pointer;
  position: relative;
}

.catalog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--resq-gold);
}

.catalog-card-icon-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(200, 130, 10, 0.35);
  background: rgba(226, 177, 106, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.catalog-card-icon-circle img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.catalog-card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--resq-text-dark);
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.catalog-card-count {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--resq-gold);
  margin-bottom: 0.85rem;
}

.catalog-card-desc {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--resq-text-muted);
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

.catalog-card-arrow {
  color: var(--resq-gold);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: transform 0.2s ease;
}

.catalog-card:hover .catalog-card-arrow {
  transform: translateX(4px);
}

/* "View All 29 Courses" Dark Card */
.catalog-card.card-all {
  background: var(--resq-navy);
  border-color: var(--resq-navy);
  color: #FFFFFF;
}

.catalog-card.card-all::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 3px;
  background-color: var(--resq-gold);
  border-radius: 0 0 3px 3px;
}

.catalog-card.card-all .catalog-card-title {
  color: #FFFFFF;
}

.catalog-card.card-all .catalog-card-count {
  color: var(--resq-gold-light);
  font-size: 1.1rem;
}

.catalog-card.card-all .catalog-card-desc {
  color: var(--resq-text-light-muted);
}

.catalog-card.card-all .catalog-card-arrow-circle {
  width: 36px;
  height: 36px;
  background-color: var(--resq-gold);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  transition: var(--transition-smooth);
}

.catalog-card.card-all:hover .catalog-card-arrow-circle {
  background-color: var(--resq-gold-hover);
  transform: scale(1.1);
}

/* ==========================================================================
   Organizations & Retainers Section
   ========================================================================== */
.organizations-section {
  position: relative;
  background-color: var(--resq-navy-dark);
  background-image: linear-gradient(180deg, rgba(8, 18, 29, 0.94) 0%, rgba(15, 35, 58, 0.9) 100%), url('../Images/About Resq-01.jpg');
  background-size: cover;
  background-position: center;
  color: #FFFFFF;
  padding: 5.5rem 0 6rem 0;
}

.organizations-section .section-title {
  color: #FFFFFF;
}

.org-column {
  text-align: center;
  padding: 1.5rem 1rem;
}

.org-icon-circle {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 1.5px solid rgba(226, 177, 106, 0.4);
  background: rgba(19, 43, 69, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  transition: var(--transition-smooth);
}

.org-column:hover .org-icon-circle {
  border-color: var(--resq-gold);
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(200, 130, 10, 0.2);
}

.org-icon-circle img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.org-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 0.85rem;
}

.org-desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--resq-text-light-muted);
  margin-bottom: 1.8rem;
  min-height: 85px;
}

/* ==========================================================================
   Get Help Now Section
   ========================================================================== */
.get-help-section {
  background-color: var(--resq-bg-cream);
  padding: 5.5rem 0 6rem 0;
}

.help-step-card {
  background: #FFFFFF;
  border: 1px solid var(--resq-card-border);
  border-radius: 6px;
  padding: 1.4rem 1.8rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.help-step-card:hover {
  transform: translateX(4px);
  border-color: var(--resq-gold);
  box-shadow: var(--shadow-card);
}

.step-number-circle {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background-color: var(--resq-navy);
  color: #FFFFFF;
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon-wrap {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon-wrap img {
  max-width: 36px;
  max-height: 36px;
  object-fit: contain;
}

.step-content {
  flex: 1;
}

.step-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--resq-text-dark);
  margin-bottom: 0.2rem;
}

.step-desc {
  font-size: 0.92rem;
  color: var(--resq-text-muted);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .help-step-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.2rem;
  }
}

/* Confidential Navigation Line Box */
.confidential-line-box {
  background-color: var(--resq-blue-light);
  border: 1px solid var(--resq-blue-light-border);
  border-radius: 8px;
  padding: 1.8rem 2.2rem;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.confidential-shield-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.confidential-shield-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.confidential-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--resq-text-dark);
  line-height: 1.25;
  margin-bottom: 0;
  min-width: 220px;
}

.confidential-text {
  font-size: 1.05rem;
  color: var(--resq-text-body);
  margin-bottom: 0;
  padding-left: 1.8rem;
  border-left: 1px solid rgba(15, 35, 58, 0.15);
}

.confidential-underline {
  border-bottom: 2px solid var(--resq-gold);
  padding-bottom: 2px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .confidential-line-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.4rem;
  }
  .confidential-text {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(15, 35, 58, 0.15);
    padding-top: 0.75rem;
  }
}

/* ==========================================================================
   Indigenous Partnerships Section
   ========================================================================== */
.indigenous-section {
  position: relative;
  background-color: var(--resq-navy-dark);
  background-image: linear-gradient(90deg, rgba(8, 18, 29, 0.95) 0%, rgba(8, 18, 29, 0.8) 50%, rgba(8, 18, 29, 0.25) 100%), url('../Images/Indigenous Image-01.jpg');
  background-size: cover;
  background-position: center right;
  color: #FFFFFF;
  padding: 6rem 0;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.indigenous-section .section-title {
  color: #FFFFFF;
}

.indigenous-text {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.2rem;
  max-width: 580px;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
  background-color: var(--resq-bg-cream);
  padding: 5.5rem 0 6rem 0;
}

.contact-info-block {
  margin-bottom: 1.6rem;
}

.contact-info-label {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--resq-text-dark);
  margin-bottom: 0.2rem;
}

.contact-info-val {
  font-size: 0.98rem;
  color: var(--resq-text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

.contact-info-val a {
  color: var(--resq-text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info-val a:hover {
  color: var(--resq-gold);
}

/* Form inputs */
.resq-form-label {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--resq-text-dark);
  margin-bottom: 0.4rem;
}

.resq-input, .resq-select, .resq-textarea {
  width: 100%;
  background-color: #FFFFFF;
  border: 1px solid #D8D2C6;
  border-radius: 4px;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--resq-text-dark);
  transition: var(--transition-smooth);
}

.resq-input:focus, .resq-select:focus, .resq-textarea:focus {
  outline: none;
  border-color: var(--resq-gold);
  box-shadow: 0 0 0 3px var(--resq-gold-glow);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.resq-footer {
  background-color: var(--resq-navy-dark);
  color: #FFFFFF;
  padding: 4rem 0 2.5rem 0;
  font-size: 0.9rem;
}

.footer-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 1.8rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (max-width: 992px) {
  .footer-nav {
    justify-content: flex-start;
    margin-top: 1.5rem;
    gap: 1.2rem;
  }
}

.footer-nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-nav-link:hover {
  color: var(--resq-gold) !important;
}

.footer-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 2.5rem 0 1.8rem 0;
}

.footer-disclaimer {
  font-size: 0.82rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0;
}

/* ==========================================================================
   Modal Dialogs & Interactive UI
   ========================================================================== */
.modal-content {
  border-radius: 8px;
  border: 1px solid var(--resq-card-border);
  box-shadow: var(--shadow-hover);
}

.modal-header {
  background-color: var(--resq-navy);
  color: #FFFFFF;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  padding: 1.25rem 1.75rem;
}

.modal-header .btn-close {
  filter: invert(1);
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: #FFFFFF;
}

.modal-body {
  padding: 2rem 1.75rem;
  background-color: #FFFFFF;
}

.course-filter-btn {
  background: #F4EEE5;
  border: 1px solid #E2D7C7;
  color: var(--resq-text-dark);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: 20px;
  margin: 0.25rem;
  transition: var(--transition-smooth);
}

.course-filter-btn:hover, .course-filter-btn.active {
  background: var(--resq-gold);
  border-color: var(--resq-gold);
  color: #FFFFFF;
}

.course-item-card {
  background: #FFFFFF;
  border: 1px solid #EBE4D8;
  border-radius: 6px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  transition: var(--transition-smooth);
}

.course-item-card:hover {
  border-color: var(--resq-gold);
  box-shadow: var(--shadow-card);
}

.course-badge {
  background: rgba(200, 130, 10, 0.12);
  color: var(--resq-gold);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Toast Notifications */
.toast-container {
  z-index: 1090;
}

/* ==========================================================================
   Back To Top Floating Button
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background-color: var(--resq-gold);
  color: #FFFFFF !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-smooth);
  text-decoration: none;
  cursor: pointer;
  border: 2px solid #FFFFFF;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--resq-gold-hover);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px var(--resq-gold-glow);
}

@media (max-width: 576px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    font-size: 1.15rem;
  }
}

