/*
Theme Name: Aloha 1st
Theme URI: http://aloha1st.org
Author: Aloha 1st Athletics
Author URI: http://aloha1st.org
Description: A bold, community-driven sports and wellness theme for Aloha 1st Athletics.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aloha1st
*/

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

:root {
  --dark:    #1a2e5c;
  --darker:  #0f1e3d;
  --orange:  #2a8a3a;
  --teal:    #5b8fd4;
  --white:   #ffffff;
  --light:   #eef2f8;
  --gray:    #6a7a9a;
  --blue-light: #daeaf7;
  --green-mid:  #4aaa52;
  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Open Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: #333;
  background: #fff;
  overflow-x: hidden;
}

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

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .3s ease;
}
.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-orange:hover { background: #1f6a2c; border-color: #1f6a2c; }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--dark); }
.btn-teal { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn-teal:hover { background: #4a7ec4; border-color: #4a7ec4; }

/* =============================================
   NAVIGATION
   ============================================= */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26,46,92,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .3s ease;
}
#site-header.scrolled { background: rgba(15,30,61,.99); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
/* ── Logo image beside the tagline ── */
.logo-image {
  height: 64px;
  width: auto;
  display: block;
  flex-shrink: 0;
  border-radius: 6px;
}
/* Site logo: image (or text fallback) + tagline in a flex row */
.site-logo {
  display: flex !important;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.site-logo .logo-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1;
}
.logo-text span { color: var(--orange); }
.logo-tagline {
  font-size: .65rem;
  color: var(--teal);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-menu a {
  color: rgba(255,255,255,.85);
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 4px;
  transition: color .2s, background .2s;
  letter-spacing: .3px;
}
.nav-menu a:hover,
.nav-menu a.active { color: var(--blue-light); background: rgba(42,138,58,.12); }

.nav-donate {
  margin-left: 12px;
  padding: 9px 20px !important;
  background: var(--orange) !important;
  color: var(--white) !important;
  border-radius: 4px;
}
.nav-donate:hover { background: #1f6a2c !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO CAROUSEL
   ============================================= */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 580px;
  overflow: hidden;
  background: var(--darker);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
}
.hero-slide.active { opacity: 1; }

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15,30,61,.45) 0%,
    rgba(15,30,61,.65) 60%,
    rgba(15,30,61,.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 48px;
  max-width: 860px;
}

.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s .3s ease, transform .8s .3s ease;
}
.hero-slide.active .hero-eyebrow { opacity: 1; transform: translateY(0); }

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s .5s ease, transform .8s .5s ease;
}
.hero-slide.active .hero-title { opacity: 1; transform: translateY(0); }

.hero-subtitle {
  font-size: clamp(1.5rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--orange);
  line-height: 1.1;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s .65s ease, transform .8s .65s ease;
}
.hero-slide.active .hero-subtitle { opacity: 1; transform: translateY(0); }

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s .8s ease, transform .8s .8s ease;
}
.hero-slide.active .hero-desc { opacity: 1; transform: translateY(0); }

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s 1s ease, transform .8s 1s ease;
}
.hero-slide.active .hero-buttons { opacity: 1; transform: translateY(0); }

.hero-arrows {
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  z-index: 10;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
}
.hero-arrow {
  pointer-events: all;
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.3);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background .3s;
  backdrop-filter: blur(4px);
}
.hero-arrow:hover { background: rgba(42,138,58,.55); border-color: var(--orange); }

.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  border: none;
  transition: background .3s, transform .3s;
}
.hero-dot.active { background: var(--orange); transform: scale(1.3); }

/* =============================================
   TICKER / PARTNER STRIP
   ============================================= */
.ticker-strip {
  background: var(--dark);
  border-top: 2px solid var(--orange);
  border-bottom: 2px solid rgba(255,255,255,.06);
  padding: 0;
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  align-items: center;
  height: 56px;
  white-space: nowrap;
  animation: ticker-scroll 28s linear infinite;
}
.ticker-inner:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 48px;
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.ticker-item .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   DONATE CTA STRIP
   ============================================= */
.donate-strip {
  background: var(--darker);
  padding: 28px 0;
  text-align: center;
}
.donate-strip .btn {
  font-size: 1.1rem;
  padding: 16px 40px;
  border-radius: 50px;
}
.donate-strip .btn svg { width: 20px; height: 20px; }

/* =============================================
   SECTION SHARED STYLES
   ============================================= */
.section { padding: 88px 0; }
.section-dark { background: var(--dark); color: var(--white); }
.section-light { background: var(--light); }
.section-white { background: var(--white); }

.section-label {
  font-family: var(--font-heading);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.15;
}
.section-title em { color: var(--orange); font-style: normal; }
.section-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  max-width: 720px;
}
.section-dark .section-text { color: rgba(255,255,255,.75); }
.section-dark .section-title { color: var(--white); }

.divider {
  width: 56px;
  height: 4px;
  background: var(--orange);
  margin: 0 0 32px 0;
  border-radius: 2px;
}

/* =============================================
   MISSION / ABOUT SECTION
   ============================================= */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.mission-image {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.mission-image img { width: 100%; height: 460px; object-fit: cover; }
.mission-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 4px solid var(--orange);
  border-radius: 8px;
  transform: translate(12px, 12px);
  z-index: -1;
}
.mission-bullets { margin-top: 28px; }
.mission-bullet {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  align-items: flex-start;
}
.bullet-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.bullet-icon svg { width: 16px; height: 16px; color: white; fill: white; }
.bullet-text {
  font-size: .95rem;
  line-height: 1.6;
  color: #444;
}

/* =============================================
   WHAT WE DO CARDS
   ============================================= */
.cards-section { background: var(--dark); }
.cards-header { text-align: center; margin-bottom: 56px; }
.cards-header .section-title { color: var(--white); }
.cards-header .divider { margin: 0 auto 0; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 40px 32px;
  text-align: center;
  transition: transform .3s, border-color .3s, background .3s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform .3s;
}
.card:hover::before { transform: scaleX(1); }
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(42,138,58,.35);
  background: rgba(255,255,255,.07);
}
.card-icon {
  width: 72px; height: 72px;
  background: rgba(42,138,58,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.card-icon svg { width: 36px; height: 36px; color: var(--orange); }
.card-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.card-subtitle {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.card-text {
  font-size: .95rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin-bottom: 28px;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: .88rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .5px;
  transition: gap .2s;
}
.card-link:hover { gap: 14px; }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  padding: 140px 0 70px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(91,143,212,.2) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero .section-label { color: var(--teal); }
.page-hero .section-title { color: var(--white); font-size: clamp(2rem,5vw,3.5rem); }
.page-hero .section-text { color: rgba(255,255,255,.75); }
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--orange); }
.breadcrumb span { color: rgba(255,255,255,.3); }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-content { max-width: 860px; }
.about-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #444;
  margin-bottom: 24px;
}
.mission-list {
  margin: 36px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mission-list-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--light);
  padding: 20px 24px;
  border-radius: 8px;
  border-left: 4px solid var(--orange);
}
.mission-list-item .icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mission-list-item .icon svg { width: 20px; height: 20px; color: white; }
.mission-list-item p { font-size: .98rem; line-height: 1.6; color: #444; }

/* =============================================
   PROGRAMS PAGE
   ============================================= */
.program-section {
  padding: 72px 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.program-section:last-child { border-bottom: none; }
.program-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.program-grid.reverse { direction: rtl; }
.program-grid.reverse > * { direction: ltr; }
.program-number {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(42,138,58,.14);
  line-height: 1;
  margin-bottom: -20px;
  display: block;
}
.program-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 16px;
}
.program-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}
.program-image-wrap {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
}
.program-image-wrap img { width: 100%; height: 340px; object-fit: cover; }

.program-sub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.sub-card {
  background: var(--light);
  border-radius: 8px;
  padding: 24px 20px;
  border-top: 3px solid var(--orange);
}
.sub-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.sub-card p { font-size: .9rem; line-height: 1.6; color: #666; }

.video-placeholder {
  background: var(--dark);
  border-radius: 10px;
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  gap: 12px;
  margin: 28px 0;
  border: 2px dashed rgba(255,255,255,.15);
}
.video-placeholder svg { width: 48px; height: 48px; color: var(--orange); opacity: .7; }
.video-placeholder p { font-size: .9rem; letter-spacing: 1px; text-transform: uppercase; }

.identity-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-top: 32px;
}
.identity-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--dark);
  color: var(--white);
  border-radius: 10px;
}
.identity-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.identity-card p { font-size: .9rem; color: rgba(255,255,255,.7); line-height: 1.6; }

/* =============================================
   DONATION PAGE
   ============================================= */
.under-construction {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  min-height: 50vh;
}
.construction-icon {
  font-size: 5rem;
  margin-bottom: 28px;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.06)} }
.under-construction h2 {
  font-size: clamp(1.8rem,4vw,2.8rem);
  color: var(--dark);
  margin-bottom: 16px;
}
.under-construction p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.progress-bar {
  width: 280px;
  height: 6px;
  background: var(--light);
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto 36px;
}
.progress-fill {
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--teal));
  border-radius: 10px;
  animation: progress-anim 2.5s ease-in-out infinite alternate;
}
@keyframes progress-anim { 0%{width:40%} 100%{width:75%} }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info-card {
  background: var(--dark);
  color: var(--white);
  border-radius: 12px;
  padding: 48px 40px;
}
.contact-info-card h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 8px;
}
.contact-info-card .tagline {
  font-size: .85rem;
  color: var(--teal);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 36px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-item .ci-icon {
  width: 44px; height: 44px;
  background: rgba(42,138,58,.18);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item .ci-icon svg { width: 22px; height: 22px; color: var(--orange); }
.contact-item .ci-text {
  font-size: .95rem;
  line-height: 1.5;
  color: rgba(255,255,255,.8);
}
.contact-item .ci-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 2px;
}
.contact-form { background: var(--light); border-radius: 12px; padding: 48px 40px; }
.contact-form h3 { font-size: 1.5rem; color: var(--dark); margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: .5px;
  margin-bottom: 6px;
  font-family: var(--font-heading);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: #333;
  background: white;
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(42,138,58,.15); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; justify-content: center; padding: 14px; font-size: 1rem; }

/* =============================================
   FOOTER
   ============================================= */
#site-footer {
  background: var(--darker);
  color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo-text { font-size: 1.6rem; margin-bottom: 12px; display: block; }
.footer-logo-image { height: 64px; width: auto; display: block; margin-bottom: 14px; border-radius: 6px; }
.footer-brand p {
  font-size: .9rem;
  line-height: 1.7;
  color: rgba(255,255,255,.55);
  margin-bottom: 20px;
}
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: background .2s, color .2s;
}
.social-link:hover { background: var(--orange); color: var(--white); }
.social-link svg { width: 18px; height: 18px; }

.footer-col h4 {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  transition: color .2s, padding-left .2s;
}
.footer-col ul a:hover { color: var(--orange); padding-left: 6px; }
.footer-contact p {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
}
.footer-contact a { color: var(--orange); }
.footer-contact a:hover { text-decoration: underline; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: var(--orange); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mission-grid { gap: 40px; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; background: rgba(15,30,61,.99); padding: 24px; gap: 4px; border-top: 1px solid rgba(255,255,255,.08); }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 12px 16px; font-size: 1rem; }
  .nav-toggle { display: flex; }
  .hero-content { padding: 0 24px; }
  .hero-title { font-size: 2rem; }
  .mission-grid { grid-template-columns: 1fr; }
  .mission-image { display: none; }
  .cards-grid { grid-template-columns: 1fr; }
  .program-grid { grid-template-columns: 1fr; }
  .program-grid.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .identity-cards { grid-template-columns: 1fr; }
  .program-sub-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .contact-info-card { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .section { padding: 60px 0; }
  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}
