/* ============================================================
   ANGIE WALKINS GRANT CONSULTANCY — STYLESHEET
   Color Palette:
   - Deep Navy:    #0d1b4b
   - Royal Blue:   #1a3a8f
   - Gold:         #c9a84c
   - Light Gold:   #e8c97a
   - Cream:        #faf8f3
   - White:        #ffffff
   - Dark Text:    #111827
   - Muted Text:   #6b7280
============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0d1b4b;
  --navy-mid: #1a3a8f;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-pale: #f5e9c3;
  --cream: #faf8f3;
  --white: #ffffff;
  --dark: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ---- TYPOGRAPHY ---- */
h1,
h2,
h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
}

h3 {
  font-size: 1.3rem;
  font-weight: 600;
}

h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-light {
  background: linear-gradient(135deg, var(--gold-light), #fff5cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- CONTAINER ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.1rem 2.4rem;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ---- SECTION LABELS / HEADERS ---- */
.section-label {
  display: inline-block;
  background: var(--gold-pale);
  color: #8b6914;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.label-light {
  background: rgba(201, 168, 76, 0.2);
  color: var(--gold-light);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title {
  margin-bottom: 0.8rem;
}

.section-subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.title-light {
  color: var(--white);
}

.subtitle-light {
  color: rgba(255, 255, 255, 0.7);
}

.section-header-light .section-label {
  background: rgba(201, 168, 76, 0.15);
}

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(13, 27, 75, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  padding: 0.6rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  font-size: 1.6rem;
  color: var(--gold);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

.logo-sub {
  font-size: 0.65rem;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--navy) !important;
  font-weight: 700;
  padding: 0.6rem 1.2rem !important;
  border-radius: 50px !important;
  box-shadow: 0 2px 15px rgba(201, 168, 76, 0.4);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 20px rgba(201, 168, 76, 0.55);
  background: rgba(255, 255, 255, 0.1) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, #102060 50%, #1a3a8f 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 4rem;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: url('hero_bg.png') center/cover no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.15;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 0.15;
  }

  90% {
    opacity: 0.08;
  }

  100% {
    transform: translateY(-100px) rotate(720deg);
    opacity: 0;
  }
}

.hero>.container,
.hero {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.6s ease;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.7;
  }
}

.hero-title {
  color: var(--white);
  margin-bottom: 1.2rem;
  animation: fadeInDown 0.7s ease 0.1s both;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: 2rem;
  animation: fadeInDown 0.7s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  animation: fadeInDown 0.7s ease 0.3s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  animation: fadeInDown 0.7s ease 0.4s both;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}

.stat-suffix {
  font-size: 1.5rem;
  color: var(--gold-light);
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.25rem;
  display: block;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

/* portrait side */
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 0.8s ease 0.3s both;
}

.hero-portrait {
  width: 100%;
  max-width: 420px;
  border-radius: 30px 30px 120px 30px;
  position: relative;
  z-index: 2;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(201, 168, 76, 0.3);
  object-fit: cover;
  aspect-ratio: 4/5;
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.2);
  animation: spin 20s linear infinite;
}

.hero-ring-1 {
  width: 460px;
  height: 460px;
}

.hero-ring-2 {
  width: 560px;
  height: 560px;
  animation-direction: reverse;
  animation-duration: 30s;
  border-style: dashed;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ---- HERO SLIDER ---- */
.hero-slider {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
}

.hero-portrait.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.hero-portrait.slide.active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}

.slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.slider-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

.hero-card-floating {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  font-size: 0.82rem;
  color: var(--dark);
  animation: floatCard 3s ease-in-out infinite;
}

.hero-card-floating strong {
  display: block;
  font-size: 0.9rem;
}

.hero-card-floating small {
  color: var(--muted);
}

.hero-card-floating .card-icon {
  font-size: 1.5rem;
}

.card-1 {
  bottom: 12%;
  left: -5%;
  animation-delay: 0s;
}

.card-2 {
  top: 15%;
  right: -5%;
  animation-delay: 1.5s;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  animation: fadeInDown 1s ease 1s both;
}

.scroll-arrow {
  width: 20px;
  height: 30px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  position: relative;
}

.scroll-arrow::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  left: 50%;
  transform: translateX(-50%);
  top: 5px;
  animation: scrollDot 1.5s infinite;
}

@keyframes scrollDot {
  0% {
    top: 5px;
    opacity: 1;
  }

  100% {
    top: 15px;
    opacity: 0;
  }
}

/* ============================================================
   TICKER
============================================================ */
.ticker-bar {
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  padding: 0.85rem 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 2rem;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

.ticker-track span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  padding-right: 2rem;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ============================================================
   ABOUT
============================================================ */
.about {
  padding: 7rem 2rem;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-portrait {
  width: 100%;
  max-width: 400px;
  border-radius: 40px 40px 120px 40px;
  object-fit: cover;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.about-second-photo {
  position: absolute;
  bottom: -20px;
  right: -25px;
  z-index: 3;
  width: 160px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
  border: 3px solid var(--white);
}

.about-portrait-sm {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: top;
  display: block;
}

.about-shape-bg {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 85%;
  height: 85%;
  border-radius: 40px;
  background: linear-gradient(135deg, var(--gold-pale), var(--gold-light));
  z-index: 1;
}

.about-badge-card {
  position: absolute;
  bottom: 30px;
  right: -20px;
  z-index: 3;
  background: var(--white);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-md);
  max-width: 230px;
}

.badge-icon {
  font-size: 1.8rem;
}

.about-badge-card strong {
  font-size: 0.85rem;
  display: block;
}

.about-badge-card p {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0;
}

.about-lead {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 1rem;
}

.about-text {
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.pillar {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pillar-icon {
  font-size: 1.5rem;
}

.pillar strong {
  font-size: 0.85rem;
  color: var(--dark);
}

.pillar p {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0;
}

/* ============================================================
   SERVICES
============================================================ */
.services {
  padding: 7rem 2rem;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.service-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.75rem;
  background: var(--white);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy-mid), var(--navy));
  transition: all var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card-featured {
  background: linear-gradient(160deg, var(--navy) 0%, #102060 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}

.service-card-featured::before {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.service-card-featured h3 {
  color: var(--white);
}

.service-card-featured p {
  color: rgba(255, 255, 255, 0.75);
}

.service-card-featured .service-list li {
  color: rgba(255, 255, 255, 0.85);
}

.service-card-featured .service-list li::before {
  color: var(--gold-light);
}

.service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.service-icon {
  font-size: 2rem;
}

.service-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--gold-pale);
  color: #8b6914;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
}

.service-badge-gold {
  background: var(--gold);
  color: var(--navy);
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.service-list li {
  font-size: 0.88rem;
  color: var(--muted);
}

.service-card-featured .service-list li {
  color: rgba(255, 255, 255, 0.8);
}

.service-btn {
  display: inline-block;
  margin-top: auto;
  color: var(--navy-mid);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: gap var(--transition);
}

.service-card-featured .service-btn {
  color: var(--gold-light);
}

.service-btn:hover {
  letter-spacing: 0.03em;
}

/* ============================================================
   GRANTS ZONE
============================================================ */
.grants-zone {
  padding: 7rem 2rem;
  position: relative;
  background: linear-gradient(135deg, #070f2b 0%, #0d1b4b 60%, #102060 100%);
}

.grants-zone-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 20%, rgba(26, 58, 143, 0.3) 0%, transparent 50%);
  pointer-events: none;
}

.grants-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.grant-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all var(--transition);
  backdrop-filter: blur(10px);
}

.grant-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-5px);
}

.grant-card-highlight {
  border-color: rgba(201, 168, 76, 0.4);
  background: rgba(201, 168, 76, 0.07);
}

.grant-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  width: fit-content;
}

.grant-tag-gold {
  background: rgba(201, 168, 76, 0.2);
  color: var(--gold-light);
}

.grant-card h4 {
  color: var(--white);
  font-size: 1rem;
}

.grant-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  flex: 1;
}

.grant-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.grant-amount {
  color: var(--gold-light);
  font-size: 1rem;
  font-weight: 700;
}

.grant-deadline {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
}

.grant-apply-btn {
  display: inline-block;
  margin-top: 0.25rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  padding: 0.55rem 1.2rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
  width: fit-content;
}

.grant-apply-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 18px rgba(201, 168, 76, 0.4);
}

.grants-cta {
  text-align: center;
}

.grants-cta p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.25rem;
}

/* ============================================================
   PROCESS
============================================================ */
.process {
  padding: 7rem 2rem;
  background: var(--cream);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.process-step {
  flex: 1;
  min-width: 200px;
  max-width: 250px;
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.step-number {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.process-step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--muted);
}

.process-arrow {
  font-size: 2rem;
  color: var(--gold);
  font-weight: 300;
  padding-top: 3rem;
  display: flex;
  align-items: flex-start;
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials {
  padding: 7rem 2rem;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.testimonial-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.testimonial-featured {
  background: linear-gradient(135deg, var(--navy) 0%, #102060 100%);
  border-color: transparent;
  color: var(--white);
  grid-row: span 1;
}

.testimonial-featured .testimonial-text {
  color: rgba(255, 255, 255, 0.85);
}

.testimonial-featured .testimonial-author strong {
  color: var(--white);
}

.testimonial-featured .testimonial-author span {
  color: rgba(255, 255, 255, 0.6);
}

.stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-style: italic;
  font-size: 1rem;
  color: var(--dark);
  flex: 1;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: white;
}

.testimonial-author strong {
  display: block;
  font-size: 0.92rem;
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ============================================================
   CTA BANNER
============================================================ */
.cta-banner {
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, #102060 100%);
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(201, 168, 76, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner-content {
  max-width: 680px;
  position: relative;
  z-index: 1;
}

.cta-banner-label {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.cta-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.cta-checklist li {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

/* ============================================================
   CONTACT
============================================================ */
.contact {
  padding: 7rem 2rem;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: flex-start;
}

.contact-lead {
  color: var(--muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  font-size: 1.25rem;
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.2rem;
}

.contact-item a,
.contact-item span {
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--navy-mid);
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}

/* Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--dark);
  outline: none;
  transition: border-color var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy-mid);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-note {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
}

.form-success {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.form-success h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--muted);
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.8);
  padding: 5rem 2rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  font-family: 'Inter', sans-serif;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold-light);
}

.footer-col>p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.footer-form {
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-form input {
  flex: 1;
  padding: 0.6rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  outline: none;
  color: var(--white);
  font-size: 0.85rem;
}

.footer-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.footer-form button {
  padding: 0.6rem 1.1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.8rem;
  white-space: nowrap;
  transition: all var(--transition);
}

.footer-form button:hover {
  opacity: 0.9;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--gold-light);
}

/* ============================================================
   ANIMATIONS
============================================================ */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 9rem 2rem 5rem;
  }

  .hero>.container {
    grid-template-columns: 1fr;
  }

  .hero-image-wrap {
    display: flex;
    margin-top: 3rem;
  }

  .hero-content {
    text-align: center;
  }

  .hero-subtitle {
    margin: 0 auto 2rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image-col {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .grants-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    font-size: 1.2rem;
  }

  .hamburger {
    display: flex;
    z-index: 1000;
  }

  .process-steps {
    flex-direction: column;
    align-items: center;
  }

  .process-arrow {
    transform: rotate(90deg);
    padding: 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .grants-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}