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

/* CSS Variables for Exact Color Palette matching Screenshots */
:root {
  --primary-navy: #0A355C;
  --primary-navy-dark: #06233E;
  --primary-navy-light: #1A5282;
  --accent-gold: #D9822B;
  --accent-gold-hover: #BF6E1E;
  --text-dark: #1E293B;
  --text-muted: #475569;
  --bg-light: #FFFFFF;
  --bg-section-alt: #F3F8FB;
  --bg-blue-tint: #EFF6FC;
  --border-color: #E2E8F0;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 10px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
  --transition-fast: all 0.2s ease;
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
span.badge-stability-tag {
    display: flex;
    align-items: inherit;
}
span.badge-stability-tag svg {
    width: 24%;
}
body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 90px 0;
}

.bg-light {
  background-color: var(--white);
}

.bg-alt {
  background-color: var(--bg-section-alt);
}

.bg-blue-tint {
  background-color: var(--bg-blue-tint);
}

.text-center {
  text-align: center;
}

/* Top Bar Styling */
.top-bar {
  background-color: var(--primary-navy);
  color: var(--white);
  padding: 10px 0;
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-left svg {
  fill: var(--accent-gold);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-bar-right a {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
}

.top-bar-right a:hover {
  opacity: 1;
  color: var(--accent-gold);
}

/* Header & Navigation */
.main-header {
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: var(--transition-normal);
  border-bottom: 1px solid var(--border-color);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 85px;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 52px;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  font-size: 13.5px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary-navy);
  letter-spacing: 0.5px;
  position: relative;
  padding: 10px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--accent-gold);
  transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  background-color: var(--accent-gold);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.nav-cta:hover {
  background-color: var(--accent-gold-hover);
  box-shadow: var(--shadow-md);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: var(--primary-navy);
  margin-bottom: 5px;
  transition: var(--transition-fast);
}

.mobile-toggle span:last-child {
  margin-bottom: 0;
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Hero Section with Light Background and Navy Text */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--primary-navy);
  padding: 120px 0;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 840px;
  margin: 0 auto;
}

.hero-tag {
  color: var(--accent-gold);
  font-size: 13.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  display: inline-block;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 52px;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  color: var(--primary-navy);
}

.hero-subtitle {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--primary-navy-light);
}

.hero-text {
  font-size: 16px;
  margin-bottom: 32px;
  color: var(--text-dark);
  line-height: 1.7;
}

.hero-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  color: var(--accent-gold);
  margin-bottom: 32px;
  display: block;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-normal);
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--primary-navy);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-navy-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--primary-navy);
  border-color: var(--primary-navy);
}

.btn-secondary:hover {
  background-color: var(--primary-navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-gold {
  background-color: var(--accent-gold);
  color: var(--white);
}

.btn-gold:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-2px);
}

.btn-gold-outline {
  background-color: transparent;
  color: var(--accent-gold);
  border-color: var(--accent-gold);
}

.btn-gold-outline:hover {
  background-color: var(--accent-gold);
  color: var(--white);
  transform: translateY(-2px);
}

/* Sections Common Header */
.section-header {
  max-width: 700px;
  margin: 0 auto 56px auto;
  text-align: center;
}

.section-tag {
  color: var(--accent-gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  display: inline-block;
}

.section-title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}

.section-title-divider::before,
.section-title-divider::after {
  content: '';
  height: 2px;
  background-color: var(--accent-gold);
  width: 60px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-navy);
  margin: 0;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 10px;
}

/* Four Pillars Grid */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pillar-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--primary-navy);
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-normal);
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pillar-icon-container {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--primary-navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
}

.pillar-icon-container svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.pillar-card:nth-child(2) {
  border-top-color: var(--accent-gold);
}
.pillar-card:nth-child(2) .pillar-icon-container {
  background-color: var(--accent-gold);
}

.pillar-card:nth-child(3) {
  border-top-color: var(--primary-navy);
}

.pillar-card:nth-child(4) {
  border-top-color: var(--accent-gold);
}
.pillar-card:nth-child(4) .pillar-icon-container {
  background-color: var(--accent-gold);
}

.pillar-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pillar-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
  min-height: 48px;
  line-height: 1.6;
}

.pillar-scripture {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent-gold);
  display: block;
}

.pillar-bullets {
  list-style: none;
  text-align: left;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border-color);
}

.pillar-bullets li {
  font-size: 13px;
  color: var(--text-dark);
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
}

.pillar-bullets li::before {
  content: '•';
  color: var(--accent-gold);
  position: absolute;
  left: 4px;
  font-weight: bold;
  font-size: 16px;
  top: -2px;
}

/* Six Areas of Stability Layout */
.stability-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.stability-left {
  max-width: 480px;
}

.stability-left .section-title {
  text-align: left;
  margin-bottom: 16px;
}

.stability-left-text {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* Custom CSS Stability Pyramid with Slanted Trapezoid Levels */
.stability-pyramid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.pyramid-level {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  color: var(--white);
  height: 48px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
  /* Slanted edges for pyramid look */
  clip-path: polygon(15px 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
}

.pyramid-level:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.level-num {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  height: 100%;
  padding-left: 10px;
}

.level-name {
  padding-left: 20px;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Pyramid Colors & Widths (Top 专业 level-6 to Bottom 属灵 level-1) */
.level-6 {
  background-color: #38BDF8; /* Professional */
  width: 60%;
  margin-left: 20%;
}
.level-6 .level-num { background-color: #0EA5E9; }

.level-5 {
  background-color: #0EA5E9; /* Financial */
  width: 68%;
  margin-left: 16%;
}
.level-5 .level-num { background-color: #0284C7; }

.level-4 {
  background-color: #0284C7; /* Emotional */
  width: 76%;
  margin-left: 12%;
}
.level-4 .level-num { background-color: #0369A1; }

.level-3 {
  background-color: #0369A1; /* Physical */
  width: 84%;
  margin-left: 8%;
}
.level-3 .level-num { background-color: #075985; }

.level-2 {
  background-color: #075985; /* Mental */
  width: 92%;
  margin-left: 4%;
}
.level-2 .level-num { background-color: #0C4A6E; }

.level-1 {
  background-color: #0C4A6E; /* Spiritual */
  width: 100%;
}
.level-1 .level-num { background-color: #082F49; }

/* Right Descriptions alongside pyramid */
.stability-right-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stability-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  border-radius: 6px;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.stability-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent-gold);
}

.stability-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--bg-blue-tint);
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stability-item-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.stability-item-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stability-item-desc {
  font-size: 13.5px;
  color: var(--text-muted);
}

/* How It Works Steps with dashed connection arrows */
.steps-layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-top: 40px;
  position: relative;
}

.step-card {
  flex: 1;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border-color);
  padding: 40px 24px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition-normal);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-gold);
}

/* Connecting arrows on desktop */
.step-card:not(:last-child)::after {
  content: '➔';
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--accent-gold);
  font-weight: bold;
  z-index: 10;
}

.step-badge-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--primary-navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 16px auto;
  font-size: 14px;
}

.step-icon-container {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: var(--bg-blue-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

.step-icon-container svg {
  width: 32px;
  height: 32px;
  fill: var(--primary-navy);
}

.step-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.step-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.step-scripture {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-gold);
  display: block;
}

/* Fruit of the Spirit Grid */
.fruits-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.fruit-item {
  text-align: center;
}

.fruit-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--white);
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px auto;
  color: var(--primary-navy);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.fruit-item:hover .fruit-icon-circle {
  color: var(--white);
  background-color: var(--primary-navy);
  border-color: var(--primary-navy);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.fruit-icon-circle svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.fruit-name {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-navy);
  letter-spacing: 0.5px;
}

/* Pre-footer Call-To-Action Banner */
.pre-footer-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  padding: 100px 0;
  text-align: center;
}

.pre-footer-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(6, 35, 62, 0.8) 0%, rgba(6, 35, 62, 0.9) 100%);
  z-index: 1;
}

.pre-footer-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.pre-footer-title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.pre-footer-text {
  font-size: 17px;
  margin-bottom: 32px;
  opacity: 0.9;
  line-height: 1.7;
}

/* Footer Styling */
.main-footer {
  background-color: var(--primary-navy-dark);
  color: var(--white);
  padding: 80px 0 20px 0;
  border-top: 4px solid var(--accent-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1.3fr 1.4fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand .logo-img {
  height: 52px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-brand-text {
  font-size: 13.5px;
  opacity: 0.75;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.footer-socials a:hover {
  background-color: var(--accent-gold);
  transform: translateY(-2px);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

.footer-heading {
  font-size: 14.5px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent-gold);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 14px;
  opacity: 0.75;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--accent-gold);
  padding-left: 4px;
}

.footer-scripture {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14.5px;
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 12px;
}

.footer-scripture-ref {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-gold);
  display: block;
}

.footer-subscribe-text {
  font-size: 13.5px;
  opacity: 0.75;
  margin-bottom: 16px;
}

.subscribe-form {
  display: flex;
}

.subscribe-input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 4px 0 0 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 14px;
}

.subscribe-input:focus {
  outline: none;
  border-color: var(--accent-gold);
  background-color: rgba(255, 255, 255, 0.15);
}

.subscribe-btn {
  background-color: var(--accent-gold);
  color: var(--white);
  padding: 0 20px;
  border: none;
  border-radius: 0 4px 4px 0;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-fast);
}

.subscribe-btn:hover {
  background-color: var(--accent-gold-hover);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  opacity: 0.7;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a:hover {
  color: var(--accent-gold);
}

/* ---------------------------------------------------- */
/* ABOUT PAGE SPECIFIC STYLES                          */
/* ---------------------------------------------------- */
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 80px;
}

.about-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  border-top: 4px solid var(--primary-navy);
}

.about-card:nth-child(2) {
  border-top-color: var(--accent-gold);
}

.about-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--bg-blue-tint);
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.about-card:nth-child(2) .about-card-icon {
  color: var(--accent-gold);
}

.about-card-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.about-card-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 16px;
}

.about-card-text {
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-card-text:last-child {
  margin-bottom: 0;
}

/* What We Believe Section */
.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.belief-card {
  background-color: var(--white);
  padding: 36px 20px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
}

.belief-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-gold);
}

.belief-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--bg-blue-tint);
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

.belief-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.belief-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 12px;
  text-transform: uppercase;
  line-height: 1.35;
}

.belief-text {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* My Story Section */
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: center;
}

.story-img-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.story-img-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 6px solid rgba(217, 130, 43, 0.15);
  pointer-events: none;
  border-radius: 12px;
}

.story-content {
  padding-left: 10px;
}

.story-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 8px;
}

.story-title {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--primary-navy);
  margin-bottom: 20px;
}

.story-text {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

/* ---------------------------------------------------- */
/* PHILOSOPHY PAGE SPECIFIC STYLES                      */
/* ---------------------------------------------------- */
.philosophy-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
}

.foundation-pillar-card {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  padding: 40px;
  text-align: center;
  border: 1px solid var(--border-color);
}

.foundation-graphics {
  margin: 32px auto;
  position: relative;
  max-width: 240px;
}

.foundation-pillar-base {
  background-color: #475569;
  height: 20px;
  border-radius: 4px;
  margin-top: -2px;
}

.foundation-pillar-body {
  background-color: #64748B;
  width: 140px;
  height: 160px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.foundation-pillar-body svg {
  position: absolute;
  top: 15px;
  width: 48px;
  height: 48px;
  fill: var(--accent-gold);
}

.foundation-title {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--primary-navy);
  margin-bottom: 12px;
}

.foundation-desc {
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.foundation-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  text-align: left;
  margin-bottom: 24px;
}

.foundation-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
}

.foundation-feature svg {
  fill: var(--accent-gold);
  flex-shrink: 0;
}

/* Framework Works Side List (Vertical timeline connecting dashed lines) */
.works-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.works-list::before {
  content: '';
  position: absolute;
  left: 36px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  border-left: 2px dashed var(--border-color);
  z-index: 1;
}

.works-item {
  display: flex;
  gap: 20px;
  padding: 16px;
  border-radius: 8px;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 2;
  transition: var(--transition-fast);
}

.works-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
  border-color: var(--accent-gold);
}

.works-item-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.works-item-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.works-item-desc {
  font-size: 13.5px;
  color: var(--text-muted);
}

/* Living with Purpose Split */
.purpose-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  margin-top: 80px;
}

.purpose-checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.purpose-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-dark);
}

.purpose-check-item svg {
  fill: var(--accent-gold);
}

.purpose-quote-card {
  background-color: var(--primary-navy);
  color: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.purpose-quote-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 120px;
  font-family: var(--font-serif);
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
}

.purpose-quote-text {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.purpose-quote-ref {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--accent-gold);
}

/* Horizontal Model Flow (Salvation -> Four Pillars -> Six Areas -> Fruit -> Purpose) */
.flow-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
  position: relative;
}

.flow-container::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 5%;
  right: 5%;
  height: 2px;
  background-color: var(--border-color);
  z-index: 1;
}

.flow-step {
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 2;
}

.flow-step-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: var(--white);
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  color: var(--primary-navy);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.flow-step:hover .flow-step-icon {
  background-color: var(--primary-navy);
  color: var(--white);
  border-color: var(--primary-navy);
  transform: translateY(-4px);
}

.flow-step-icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.flow-step-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-navy);
  margin-bottom: 4px;
}

.flow-step-desc {
  font-size: 11px;
  color: var(--text-muted);
  max-width: 140px;
  margin: 0 auto;
}

/* ---------------------------------------------------- */
/* RESOURCES PAGE SPECIFIC STYLES                     */
/* ---------------------------------------------------- */
.resources-action-banner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  background-color: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  margin-top: -60px;
  position: relative;
  z-index: 10;
  margin-bottom: 80px;
}

.action-banner-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 12px;
}

.action-banner-text {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* 3 columns listing areas on banner */
.action-banner-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: center;
}

.banner-area-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: var(--bg-blue-tint);
  padding: 12px 16px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
}

.banner-area-card-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--primary-navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.banner-area-card-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.banner-area-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-navy);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.banner-area-bullets {
  font-size: 11px;
  color: var(--text-muted);
}

/* Explore Resources 6 Cards */
.explore-resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.explore-resource-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 32px 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
}

.explore-card-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--bg-blue-tint);
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

.explore-card-badge svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.explore-card-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.explore-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 16px;
  text-transform: uppercase;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.explore-card-bullets {
  list-style: none;
  text-align: left;
  margin-bottom: 20px;
  flex-grow: 1;
  padding-left: 12px;
}

.explore-card-bullets li {
  font-size: 13.5px;
  color: var(--text-dark);
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
}

.explore-card-bullets li::before {
  content: '✓';
  color: var(--accent-gold);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.explore-card-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13.5px;
  color: var(--accent-gold);
  margin-bottom: 24px;
  min-height: 44px;
  line-height: 1.5;
}

.explore-card-btn {
  padding: 12px 20px;
  background-color: var(--primary-navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  transition: var(--transition-fast);
}

.explore-resource-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-gold);
}

.explore-card-btn:hover {
  background-color: var(--primary-navy-dark);
}

/* Recommended Reading Carousel */
.carousel-wrapper {
    position: relative;
    max-width: 1500px;
    margin: 40px auto 0 auto;
    padding: 0 50px;
}

.carousel-container {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 24px;
}

.book-card {
  min-width: calc(20% - 20px);
  flex-shrink: 0;
  text-align: center;
  background-color: var(--white);
  padding: 20px 16px;
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-fast);
}

.book-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-gold);
}

.book-img-container {
  width: 100%;
  aspect-ratio: 2/3;
  margin-bottom: 16px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.book-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.book-category {
  font-size: 9px;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}

.book-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 6px;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.35;
}

.book-author {
  font-size: 12px;
  color: var(--text-muted);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-navy);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  z-index: 10;
  transition: var(--transition-fast);
}

.carousel-btn:hover {
  background-color: var(--primary-navy);
  color: var(--white);
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--border-color);
  border: none;
  cursor: pointer;
  padding: 0;
}

.carousel-dot.active {
  background-color: var(--primary-navy);
  width: 20px;
  border-radius: 4px;
}

/* Bottom Resources 3 Columns section */
.resources-bottom-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 0.8fr;
  gap: 32px;
  margin-top: 80px;
}

.bottom-card {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  padding: 36px;
  border: 1px solid var(--border-color);
}

.bottom-card-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wheel-assessment-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.assessment-wheel-svg {
  width: 170px;
  height: 170px;
  margin-bottom: 24px;
}

.assessment-content-box {
  width: 100%;
}

.assessment-subtitle {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 12px;
}

.assessment-text {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.assessment-checklist {
  list-style: none;
  margin-bottom: 20px;
}

.assessment-checklist li {
  font-size: 13px;
  color: var(--text-dark);
  margin-bottom: 8px;
  padding-left: 24px;
  position: relative;
}

.assessment-checklist li::before {
  content: '✓';
  color: var(--accent-gold);
  position: absolute;
  left: 4px;
  font-weight: bold;
}

.assessment-btn {
  width: 100%;
  padding: 12px;
  background-color: var(--primary-navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.assessment-btn:hover {
  background-color: var(--primary-navy-dark);
}

.download-resources-list {
  list-style: none;
}

.download-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}

.download-item:last-child {
  border-bottom: none;
}

.download-icon {
  color: var(--primary-navy);
  margin-top: 2px;
  font-weight: bold;
}

.download-info {
  flex-grow: 1;
}

.download-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary-navy);
}

.download-coming {
  font-size: 10.5px;
  color: var(--accent-gold);
  font-weight: 600;
  margin-left: 6px;
}

.download-all-btn {
  width: 100%;
  padding: 12px;
  background-color: var(--primary-navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.download-all-btn:hover {
  background-color: var(--primary-navy-dark);
}

.testimonial-quote-box {
  background-color: var(--bg-blue-tint);
  border-radius: 8px;
  padding: 40px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  border: 1px solid var(--border-color);
}

.testimonial-quote-box::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 100px;
  font-family: var(--font-serif);
  color: rgba(7, 37, 66, 0.05);
  line-height: 1;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.75;
  color: var(--primary-navy);
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.testimonial-author {
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  color: var(--text-dark);
  text-transform: uppercase;
}

/* ---------------------------------------------------- */
/* CONTACT PAGE SPECIFIC STYLES                        */
/* ---------------------------------------------------- */
.contact-split-forms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 80px;
}

.contact-form-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.contact-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-header-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--bg-blue-tint);
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-form-card:nth-child(2) .contact-header-icon {
  color: var(--accent-gold);
}

.contact-header-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.contact-header-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 4px;
}

.contact-header-subtitle {
  font-size: 13.5px;
  color: var(--text-muted);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 13.5px;
  background-color: var(--bg-section-alt);
  transition: var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-navy);
  background-color: var(--white);
}

.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 13.5px;
  background-color: var(--bg-section-alt);
  min-height: 120px;
  resize: vertical;
  transition: var(--transition-fast);
}

.form-textarea:focus {
  outline: none;
  border-color: var(--primary-navy);
  background-color: var(--white);
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.checkbox-group input {
  width: 16px;
  height: 16px;
  accent-color: var(--primary-navy);
}

.checkbox-label {
  font-size: 12.5px;
  color: var(--text-muted);
}

.form-submit-btn {
  width: 100%;
  padding: 14px;
  background-color: var(--primary-navy);
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-submit-btn:hover {
  background-color: var(--primary-navy-dark);
}

.contact-form-card:nth-child(2) .form-submit-btn {
  background-color: var(--accent-gold);
}

.contact-form-card:nth-child(2) .form-submit-btn:hover {
  background-color: var(--accent-gold-hover);
}

/* Join Community / Connect With Us grid */
.community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 80px;
}

.community-card {
  background-color: var(--bg-blue-tint);
  border-radius: 8px;
  padding: 40px 32px;
  text-align: center;
  border: 1px solid var(--border-color);
}

.community-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary-navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

.community-card-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.community-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.community-card-text {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.community-card-btn {
  padding: 12px 24px;
  background-color: var(--primary-navy);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-fast);
}

.community-card-btn:hover {
  background-color: var(--primary-navy-dark);
}

.community-sub-form {
  display: flex;
  margin-bottom: 16px;
}

.community-social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  max-width: 280px;
  margin: 0 auto;
}

.social-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
}

.social-item-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
}

.social-item-icon svg {
  width: 16px;
  height: 16px;
  fill: var(--primary-navy);
}

.social-item-name {
  font-weight: 700;
  color: var(--text-dark);
}

.social-item-handle {
  color: var(--text-muted);
}

/* Timeline/Framework Steps (Contact version) */
.timeline-framework {
  background-color: var(--bg-blue-tint);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 80px;
  border: 1px solid var(--border-color);
}

.timeline-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.timeline-steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 5%;
  right: 5%;
  height: 2px;
  background-color: var(--border-color);
  z-index: 1;
}

.timeline-step {
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 2;
}

.timeline-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary-navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px auto;
  border: 4px solid var(--white);
}

.timeline-step:nth-child(2) .timeline-icon { background-color: var(--accent-gold); }
.timeline-step:nth-child(4) .timeline-icon { background-color: var(--accent-gold); }

.timeline-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.timeline-title {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.timeline-desc {
  font-size: 10.5px;
  color: var(--text-muted);
  max-width: 120px;
  margin: 0 auto;
}

/* FAQ Accordion Section */
.faq-accordion {
  max-width: 800px;
  margin: 40px auto 0 auto;
}

.faq-item {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-header {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  transition: var(--transition-fast);
}

.faq-header:hover {
  background-color: var(--bg-section-alt);
}

.faq-question {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--primary-navy);
}

.faq-icon {
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--primary-navy);
  transition: var(--transition-fast);
}

/* Horizontal line */
.faq-icon::before {
  top: 9px;
  left: 2px;
  width: 16px;
  height: 2px;
}

/* Vertical line */
.faq-icon::after {
  top: 2px;
  left: 9px;
  width: 2px;
  height: 16px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-header {
  border-bottom: 1px solid var(--border-color);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-content {
  max-height: 1000px;
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

.faq-answer {
  padding: 20px 24px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Script banner style for the bottom Scripture quote */
.bottom-banner-scripture {
  background: linear-gradient(rgba(6, 35, 62, 0.8), rgba(6, 35, 62, 0.95)), url('../images/hero-contact.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

/* Decorative SVG Dove on left / Praying person on right or vice versa */
.bottom-banner-scripture-text {
  font-family: var(--font-serif);
  font-size: 24px;
  font-style: italic;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 16px auto;
  position: relative;
  z-index: 2;
}

.bottom-banner-scripture-ref {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-gold);
  position: relative;
  z-index: 2;
}

/* ---------------------------------------------------- */
/* RESPONSIVENESS AND MEDIA QUERIES                   */
/* ---------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 42px;
  }
  
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .explore-resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .beliefs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .resources-bottom-grid {
    grid-template-columns: 1fr 1fr;
  }
  .resources-bottom-grid .testimonial-quote-box {
    grid-column: span 2;
    height: auto;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .book-card {
    min-width: calc(33.333% - 16px);
  }
  
  .resources-action-banner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  
  .header-container {
    height: 75px;
  }
  
  .mobile-toggle {
    display: block;
    z-index: 110;
  }
  
  .nav-menu {
    position: fixed;
    top: 75px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 75px);
    background-color: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 40px 24px;
    z-index: 100;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
    align-items: stretch;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-item {
    border-bottom: 1px solid var(--border-color);
    width: 100%;
    text-align: center;
  }
  
  .nav-link {
    display: block;
    padding: 16px 0;
    font-size: 16px;
  }
  
  .nav-link::after {
    display: none;
  }
  
  .nav-cta-item {
    margin-top: 24px;
    text-align: center;
  }
  
  .nav-cta {
    display: inline-block;
    width: 100%;
    max-width: 280px;
  }
  
  .hero {
    padding: 80px 0;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .stability-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .stability-left {
    max-width: 100%;
    text-align: center;
  }
  
  .stability-left .section-title {
    text-align: center;
  }
  
  .steps-layout {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }
  
  .step-card:not(:last-child)::after {
    content: '➔';
    right: 50%;
    bottom: -28px;
    top: auto;
    transform: translateX(50%) rotate(90deg);
  }
  
  .fruits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .mission-vision-grid {
    grid-template-columns: 1fr;
  }
  
  .story-layout {
    grid-template-columns: 1fr;
  }
  
  .philosophy-split {
    grid-template-columns: 1fr;
  }
  
  .works-list::before {
    display: none;
  }
  
  .works-item {
    transform: none !important;
  }
  
  .purpose-split {
    grid-template-columns: 1fr;
  }
  
  .flow-container {
    flex-direction: column;
    gap: 32px;
  }
  
  .flow-container::before {
    display: none;
  }
  
  .flow-step-desc {
    max-width: 240px;
  }
  
  .resources-action-banner {
    padding: 32px 24px;
    text-align: center;
    margin-top: -30px;
  }
  
  .action-banner-right {
    justify-content: center;
  }
  
  .explore-resources-grid {
    grid-template-columns: 1fr;
  }
  
  .book-card {
    min-width: calc(50% - 12px);
  }
  
  .resources-bottom-grid {
    grid-template-columns: 1fr;
  }
  
  .resources-bottom-grid .testimonial-quote-box {
    grid-column: span 1;
  }
  
  .contact-split-forms {
    grid-template-columns: 1fr;
  }
  
  .community-grid {
    grid-template-columns: 1fr;
  }
  
  .timeline-steps {
    flex-direction: column;
    gap: 24px;
  }
  
  .timeline-steps::before {
    display: none;
  }
  
  .timeline-step-desc {
    max-width: 180px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 30px;
  }
  
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  
  .pyramid-level {
    grid-template-columns: 60px 1fr;
    height: 44px;
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  }
  
  .level-name {
    padding-left: 12px;
    font-size: 11px;
  }
  
  .book-card {
    min-width: 100%;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .faq-question {
    font-size: 13.5px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .fruits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==================================================== */
/* PIXEL-PERFECT RECREATION LAYOUT ADDITIONS           */
/* ==================================================== */

/* Unified Pyramid Infographic Grid (Desktop) */
.pyramid-infographic {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-top: 20px;
}

.pyramid-row {
  display: flex;
  align-items: center;
  gap: 32px;
  width: 100%;
  min-height: 48px;
}

.pyramid-level-container {
  width: 320px;
  position: relative;
  flex-shrink: 0;
}

.connector-line-wrapper {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -32px; /* Reaches the description column edge */
  height: 1px;
  display: flex;
  align-items: center;
}

.connector-line {
  flex: 1;
  height: 1px;
  border-top: 1.5px dotted var(--accent-gold);
}

.connector-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-gold);
  border-radius: 50%;
  margin-left: -3px;
}

.pyramid-description {
  font-size: 13.5px;
  color: var(--text-dark);
  line-height: 1.5;
  flex: 1;
}

/* Calculate exact right-edge connector positions for centered trapezoids */
.level-6-line { left: calc(50% + 27.5%); }
.level-5-line { left: calc(50% + 32%); }
.level-4-line { left: calc(50% + 36.5%); }
.level-3-line { left: calc(50% + 41%); }
.level-2-line { left: calc(50% + 45.5%); }
.level-1-line { left: calc(50% + 50%); }

/* Vertical Timeline for FAQ Section in contact.html */
.timeline-faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: flex-start;
  margin-top: 40px;
}

.timeline-column {
  width: 100%;
}

.faq-column {
  width: 100%;
}

.section-title-small {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vertical-timeline {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  padding-left: 10px;
}

.v-timeline-item {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.v-timeline-icon-container {
  width: 48px;
  height: 48px;
  position: relative;
  flex-shrink: 0;
}

.v-timeline-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary-navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 2;
}

.v-timeline-item:nth-child(2n) .v-timeline-icon {
  background-color: var(--accent-gold);
}

.v-timeline-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Down arrow connector */
.v-timeline-item:not(:last-child)::after {
  content: '↓';
  position: absolute;
  left: 24px;
  top: 48px;
  transform: translateX(-50%);
  font-size: 16px;
  color: var(--accent-gold);
  font-weight: bold;
  height: 20px;
  display: flex;
  align-items: center;
  z-index: 1;
}

.v-timeline-content {
  flex: 1;
}

.v-timeline-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 2px;
  text-transform: uppercase;
}

.v-timeline-desc {
  font-size: 11.5px;
  color: var(--text-muted);
}

/* Dark Community Card Styling override */
.community-card-dark {
  background-color: var(--primary-navy) !important;
  color: var(--white) !important;
  border-color: var(--primary-navy-dark) !important;
}

.community-card-dark .community-card-title {
  color: var(--white) !important;
}

.community-card-dark .community-card-text {
  color: rgba(255, 255, 255, 0.85) !important;
}

.community-card-dark .community-card-btn {
  background-color: var(--white) !important;
  color: var(--primary-navy) !important;
}

.community-card-dark .community-card-btn:hover {
  background-color: #f1f5f9 !important;
}

.community-card-dark .community-card-icon {
  background-color: var(--white) !important;
  color: var(--primary-navy) !important;
}

.community-card-dark .explore-card-bullets li {
  color: var(--white) !important;
}

.community-card-dark .explore-card-bullets li::before {
  color: var(--white) !important;
}

/* Scripture Banner Decorative SVGs */
.banner-deco-left {
  position: absolute;
  left: 3%;
  bottom: 0;
  height: 90%;
  width: auto;
  opacity: 0.15;
  z-index: 1;
  pointer-events: none;
}

.banner-deco-right {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  height: auto;
  width: 140px;
  opacity: 0.15;
  z-index: 1;
  pointer-events: none;
}

/* Testimonial Quote Box Gold Line */
.testimonial-quote-box::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background-color: var(--accent-gold);
  margin: 24px auto 0 auto;
}

/* 3-Column action banner right side for resources.html */
.action-banner-right-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: flex-start;
}

.banner-stability-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background-color: var(--white);
  padding: 16px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.stability-item-icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--primary-navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stability-item-icon-circle svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.stability-item-title-small {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-navy);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.stability-item-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.stability-item-bullets li {
  font-size: 11px;
  color: var(--text-muted);
  position: relative;
  padding-left: 10px;
  margin-bottom: 2px;
}

.stability-item-bullets li::before {
  content: '•';
  color: var(--accent-gold);
  position: absolute;
  left: 0;
}

/* Philosophy Page - Living with Purpose Three Column */
.purpose-three-column {
  display: grid;
  grid-template-columns: 1fr 1.3fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.purpose-img-col img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

/* Foundation Gold Icons Grid */
.foundation-gold-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  text-align: left;
  margin-top: 24px;
}

.foundation-gold-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark);
}

.foundation-gold-item svg {
  fill: var(--accent-gold);
  flex-shrink: 0;
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .pyramid-row {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }
  
  .connector-line-wrapper {
    display: none;
  }
  
  .pyramid-description {
    font-size: 13px;
  }
  
  .timeline-faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .action-banner-right-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .purpose-three-column {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .purpose-img-col img {
    height: 260px;
  }
}

@media (max-width: 576px) {
  .action-banner-right-grid {
    grid-template-columns: 1fr;
  }
  
  .foundation-gold-grid {
    grid-template-columns: 1fr;
  }
}
