/* ============================================
   HOPE ARUBA — BRAND DESIGN SYSTEM
   Primary Font: Raleway
   Colors: exact from child theme CSS
   ============================================ */

:root {
  --primary: #15d7be;
  --primary-dark: #11af9a;
  --secondary: #3E4856;
  --tertiary: #50DF92;
  --highlighted: #FAFE28;
  --text-color: #72797B;
  --white: #ffffff;
  --dark: #666666;
  --primary-font: "Raleway", sans-serif;
  --max-width: 1240px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--primary-font);
  color: var(--text-color);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--primary-font);
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.2;
}

.page-title {
  color: var(--primary);
  font-size: 60px;
  font-weight: 900;
  letter-spacing: -2.33px;
  line-height: 98px;
  text-align: center;
  padding: 0.5rem 1rem;
}

blockquote {
  color: var(--secondary);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -1.56px;
  line-height: 1.2;
  text-align: center;
  border-left: none;
  font-style: normal;
  padding: 2rem 1rem;
}
blockquote p { margin-bottom: 5px; }
blockquote strong {
  font-size: 20px;
  font-weight: 500;
  display: block;
  margin-top: 10px;
}

.text-highlighted { color: var(--highlighted); }
.text-white { color: var(--white); }
.text-primary { color: var(--primary); }

/* ============================================
   UTILITY
   ============================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn {
  display: inline-block;
  padding: 12px 48px;
  border-radius: 4px;
  font-family: var(--primary-font);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s;
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.site-logo img {
  height: 80px;
  width: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.primary-nav a {
  color: var(--secondary);
  font-family: var(--primary-font);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding: 1em 0 0.5em;
  margin: 0 0.7em;
  transition: color 0.3s;
}

.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--highlighted));
  transition: width 0.5s;
}

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

.primary-nav a:hover { color: var(--secondary); }

/* ===== DROPDOWN SUBMENU ===== */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown > a::before {
  content: '▾';
  font-size: 11px;
  order: 2;
  margin-left: 3px;
  transition: transform 0.3s;
}

.nav-dropdown:hover > a::before {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-top: 3px solid var(--primary);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  min-width: 180px;
  z-index: 2000;
  padding: 0.5rem 0;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.2rem;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--secondary);
  white-space: nowrap;
  margin: 0;
}

.dropdown-menu a::after { display: none; }

.dropdown-menu a:hover {
  background: var(--primary);
  color: var(--white);
}

/* Mobile dropdown */
@media (max-width: 768px) {
  .nav-dropdown > a::before { display: none; }
  .dropdown-menu {
    display: block;
    position: static;
    transform: none;
    box-shadow: none;
    border-top: none;
    border-left: 3px solid var(--highlighted);
    background: rgba(255,255,255,0.15);
    padding: 0.25rem 0 0.25rem 1rem;
    margin-top: 0.5rem;
    min-width: auto;
  }
  .dropdown-menu a {
    color: var(--white);
    font-size: 1.1rem;
    padding: 0.4rem 0.5rem;
  }
  .dropdown-menu a:hover { background: transparent; color: var(--highlighted); }
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Close button hidden on desktop */
.menu-close { display: none; }

/* ============================================
   HERO SECTION (HOME)
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  margin-top: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 92% 0%;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(21, 215, 190, 0.80) 0%,
    rgba(21, 215, 190, 0.60) 35%,
    rgba(21, 215, 190, 0.20) 55%,
    rgba(62, 72, 86, 0.05) 75%,
    rgba(62, 72, 86, 0.00) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
}

.hero-content {
  width: 50%;
  max-width: 620px;
  padding: 6rem 3rem 4rem 0;
  color: var(--white);
  text-align: left;
}

.hero-eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--highlighted);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 1;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-title-underline {
  display: inline-block;
  border-bottom: 16px solid var(--highlighted);
  padding-bottom: 0;
  line-height: 1;
}

.hero-desc {
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 2.5rem;
  color: rgba(255,255,255,0.92);
}

/* ============================================
   FEATURED CARDS (3-col, Home)
   ============================================ */
.featured-pages {
  padding: 48px 40px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.featured-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.featured-card-img {
  width: 100%;
  height: 800px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.featured-card:hover .featured-card-img {
  transform: scale(1.04);
}

.featured-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.05) 35%,
    rgba(0,0,0,0.05) 55%,
    rgba(0,0,0,0.65) 100%
  );
}

.featured-card-title-wrap {
  position: relative;
  padding: 0 15px;
  padding-top: 30px;
}

.featured-card-title {
  font-size: 54px;
  font-weight: 900;
  letter-spacing: -2.72px;
  line-height: 38px;
  color: var(--white);
  text-transform: lowercase;
  border-bottom: 20px solid #E3FB38;
  padding-left: 15px;
  padding-top: 30px;
  display: inline-block;
  width: 100%;
}

.card-connect .featured-card-title { border-bottom-color: #E3FB38; }
.card-empower .featured-card-title { border-bottom-color: #8BEB71; }
.card-movement .featured-card-title { border-bottom-color: #3DDEA4; }

.featured-card-body {
  position: relative;
  padding: 0 30px 50px;
  color: var(--white);
}

.featured-card-body p {
  margin-bottom: 0;
  padding-top: 15px;
}

.featured-card-body a {
  color: var(--white);
  font-size: 14px;
  font-weight: bold;
  border-radius: 4px;
  background-color: var(--primary);
  padding: 8px 56px;
  display: inline-block;
  margin-top: 15px;
  transition: background-color 0.3s;
}

.featured-card-body a:hover {
  background-color: var(--primary-dark);
}

/* ============================================
   DISPLAY / LARGE TEXT SECTION
   ============================================ */
.display-section {
  padding: 5rem 2rem;
  text-align: center;
  background: var(--white);
}

.display-large {
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 900;
  letter-spacing: -4px;
  line-height: 1;
  color: var(--primary);
  display: block;
}

.display-small {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.5;
  color: var(--secondary);
  display: block;
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-section {
  background: var(--white);
  overflow: hidden;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(62,72,86,0.08);
  border-bottom: 1px solid rgba(62,72,86,0.08);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 20s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary);
  padding: 0 2rem;
  white-space: nowrap;
}

.marquee-item::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: var(--highlighted);
  border-radius: 50%;
  margin-left: 2rem;
  vertical-align: middle;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ============================================
   PARTNERS / LOGOS
   ============================================ */
.partners-section {
  padding: 4rem 2rem;
  background: var(--white);
}

.partners-section h3 {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-color);
  margin-bottom: 2.5rem;
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem 4rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.partner-logo img {
  height: 45px;
  width: auto;
  filter: grayscale(1) opacity(0.6);
  transition: filter 0.3s, transform 0.3s;
}

.partner-logo img:hover {
  filter: grayscale(0) opacity(1);
  transform: scale(1.05);
}

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */
.page-header {
  background: #f5f5f5;
  padding: 8rem 2rem 2rem;
  text-align: center;
}

.page-header .page-title {
  margin: 0;
  padding: 0;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-content {
  max-width: var(--max-width);
  margin: 0 auto;
}

.quote-section {
  padding: 4rem 2rem;
  background: var(--white);
}

.about-intro {
  padding: 4rem 2rem;
}

.about-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 2rem;
  overflow: hidden;
}

.about-two-col.reverse { direction: rtl; }
.about-two-col.reverse > * { direction: ltr; }

.about-img-wrap {
  overflow: hidden;
}

.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 4px;
}

.about-img-wrap.tilt-left img { transform: rotate(-3deg); }
.about-img-wrap.tilt-right img { transform: rotate(3deg); }

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 1.2rem;
}

.about-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.about-text ul li {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-color);
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.8rem;
}

.about-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

/* Video placeholder */
.video-placeholder {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  background: var(--secondary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

.video-play-btn {
  position: relative;
  z-index: 1;
  width: 80px;
  height: 80px;
  background: rgba(21,215,190,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.3s;
}

.video-play-btn:hover {
  transform: scale(1.1);
  background: var(--primary);
}

.video-play-btn svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
  margin-left: 5px;
}

/* ============================================
   CONNECT / HOPEFLIX PAGE
   ============================================ */
.connect-intro {
  padding: 3rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.connect-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
  max-width: 800px;
}

.hopeflix-section {
  background: #f7f7f7;
  padding: 4rem 2rem;
}

.hopeflix-header {
  max-width: var(--max-width);
  margin: 0 auto 3rem;
}

.hopeflix-header h2 {
  font-size: 3rem;
  font-weight: 900;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.hopeflix-header p {
  font-size: 1.05rem;
  color: var(--text-color);
  max-width: 700px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.video-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.video-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.video-card-body {
  padding: 1rem 1.25rem 1.25rem;
}

.video-card-title {
  color: var(--tertiary);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.video-card-desc {
  font-size: 0.85rem;
  color: var(--dark);
  line-height: 1.6;
}

/* Submission form */
.submission-section {
  padding: 4rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.submission-section h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.submission-section p {
  color: var(--text-color);
  margin-bottom: 2rem;
}

/* ============================================
   EMPOWER PAGE
   ============================================ */
.empower-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.empower-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.empower-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(62,72,86,0.85) 0%, rgba(21,215,190,0.7) 100%);
}

.empower-hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 2rem 4rem;
  max-width: var(--max-width);
  margin: 0 auto;
  color: var(--white);
}

.empower-hero-content h1 {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900;
  letter-spacing: -3px;
  color: var(--white);
  border-bottom: 16px solid #8BEB71;
  display: inline-block;
  margin-bottom: 2rem;
}

.empower-body {
  padding: 4rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.empower-body p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  max-width: 820px;
}

.empower-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.empower-card-item {
  background: #f7f7f7;
  border-radius: 8px;
  padding: 2rem;
  border-top: 5px solid var(--primary);
  transition: transform 0.3s;
}

.empower-card-item:hover {
  transform: translateY(-4px);
}

.empower-card-item h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.empower-card-item p {
  font-size: 0.95rem;
  color: var(--text-color);
  line-height: 1.7;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 2rem;
}

.contact-info h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.contact-info p {
  font-size: 1.05rem;
  color: var(--text-color);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  background: var(--highlighted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--primary);
}

.contact-detail-text strong {
  display: block;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.contact-detail-text span {
  color: var(--text-color);
  font-size: 0.95rem;
}

.contact-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 2rem;
}

/* ============================================
   FORM STYLES
   ============================================ */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--primary-font);
  font-size: 1rem;
  color: var(--secondary);
  background: var(--white);
  transition: border-color 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-required { color: var(--primary); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  position: relative;
  background: linear-gradient(0deg, #15D7BE 0%, #FAFE28 100%) no-repeat;
  color: var(--white);
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/footer-pattern.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}

.footer-main {
  position: relative;
  z-index: 1;
  padding: 4rem 2rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto auto;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* Widget 1: Logo - col 2/4 */
.footer-widget-logo {
  grid-column: 2 / 4;
  text-align: center;
}

.footer-widget-logo img {
  width: 200px;
  margin: 0 auto;
}

.footer-widget-logo .footer-tagline {
  color: var(--secondary);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
  margin-top: 0.8rem;
  max-width: 225px;
  margin-left: auto;
  margin-right: auto;
}

/* Widget 2: Contact - col 1/3 with right border */
.footer-widget-contact {
  grid-column: 1 / 3;
  border-right: 1px solid rgba(255,255,255,0.6);
  padding-bottom: 40px;
  padding-right: 2rem;
}

.footer-widget-contact h3 {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-widget-contact p {
  color: var(--secondary);
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}

.footer-widget-contact a {
  color: var(--white);
  font-weight: 600;
}

/* Widget 3: Newsletter - col 3/5 */
.footer-widget-newsletter {
  grid-column: 3 / 5;
  text-align: center;
  padding-left: 2rem;
}

.footer-widget-newsletter h3 {
  color: var(--secondary);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.footer-widget-newsletter p {
  color: var(--secondary);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 320px;
  margin: 0 auto;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 4px 0 0 4px;
  font-family: var(--primary-font);
  font-size: 0.9rem;
  outline: none;
}

.newsletter-form button {
  padding: 12px 24px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 0 4px 4px 0;
  font-family: var(--primary-font);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter-form button:hover {
  background: var(--primary-dark);
}

/* Widget 4: Social - col 2/4 */
.footer-widget-social {
  grid-column: 2 / 4;
  text-align: center;
  padding-top: 1rem;
}

.footer-widget-social h3 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-widget-social .footer-social-tag {
  color: var(--secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.social-icon {
  width: 52px;
  height: 52px;
  background: var(--highlighted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.social-icon:hover { transform: scale(1.1); }

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

/* Footer bottom bar */
.footer-bottom {
  position: relative;
  z-index: 1;
  background: var(--primary);
  padding: 1.2rem 2rem;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.85rem;
  color: var(--white);
}

.footer-bottom a {
  color: var(--white);
  text-decoration: underline;
}

/* ============================================
   SECTION DIVIDERS & GENERAL SECTIONS
   ============================================ */
.section-pad {
  padding: 5rem 2rem;
}

.section-pad-sm {
  padding: 3rem 2rem;
}

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

.bg-secondary h2, .bg-secondary h3 { color: var(--white); }

/* Two-col text layout */
.text-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* CTA Band */
.cta-band {
  background: var(--secondary);
  padding: 3.5rem 2rem;
  text-align: center;
}

.cta-band h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1080px) {
  .featured-card-title { font-size: 2.5rem; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .footer-widget-logo { grid-column: 1 / 3; }
  .footer-widget-contact { grid-column: 1 / 2; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.6); padding-bottom: 2rem; }
  .footer-widget-newsletter { grid-column: 2 / 3; padding-left: 1rem; }
  .footer-widget-social { grid-column: 1 / 3; }
}

@media (max-width: 768px) {
  .primary-nav { display: none; }
  .primary-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary);
    z-index: 999;
    padding: 6rem 2rem 2rem;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .primary-nav.open a {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
  }
  .primary-nav.open a::after { background: var(--white); }
  .menu-toggle { display: flex; z-index: 1001; position: relative; }
  .menu-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    background: none;
    border: none;
  }

  .featured-pages { padding: 32px 20px; }
  .featured-grid { grid-template-columns: 1fr; gap: 16px; }
  .featured-card-img { height: 520px; }
  .featured-card-title { font-size: 3rem; }
  .about-two-col { grid-template-columns: 1fr; }
  .about-two-col.reverse { direction: ltr; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 2rem; }
  .empower-cards-grid { grid-template-columns: 1fr; }
  .text-two-col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-widget-logo,
  .footer-widget-contact,
  .footer-widget-newsletter,
  .footer-widget-social { grid-column: 1; }
  .footer-bottom-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
  .display-large { font-size: clamp(4rem, 16vw, 6rem); }
  .display-small { font-size: clamp(2rem, 8vw, 3.5rem); }
  blockquote { font-size: 1.8rem; line-height: 1.3; }
  .page-title { font-size: 3rem; line-height: 1.2; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
  .featured-card-title { font-size: 2.8rem; letter-spacing: -1.5px; }
  .video-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input,
  .newsletter-form button { border-radius: 4px; }
  blockquote { font-size: 1.5rem; padding: 1rem; }
}
