/* =========================================
   TCDDI - Tanzania Center for Disabilities
   Development Initiatives
   ========================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* === Logo-extracted palette === */
  --logo-blue:       #2E9CDB;   /* bright ring blue  */
  --logo-navy:       #173A6A;   /* dark text navy    */
  --logo-light:      #D0E8F5;   /* light blue tint   */

  /* === Semantic aliases === */
  --primary:         #2E9CDB;   /* logo bright blue  */
  --primary-dark:    #173A6A;   /* logo navy         */
  --primary-mid:     #1a6fa8;   /* mid blue          */
  --primary-light:   #D0E8F5;   /* logo light bg     */
  --secondary:       #ffb302;   /* amber – CTA only  */
  --secondary-dark:  #c98a00;

  --dark:            #0d2240;   /* deep navy bg      */
  --dark2:           #071428;   /* deepest bg        */
  --white:           #ffffff;
  --light-bg:        #eaf4fc;   /* logo-tinted page bg */
  --text:            #0f2a4a;
  --text-muted:      #4a6580;
  --border:          #b8d8ef;
  --shadow:    0 4px 24px rgba(23,58,106,0.10);
  --shadow-md: 0 8px 40px rgba(23,58,106,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 20, 40, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(46,156,219,0.2);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.navbar .container {
  display: flex;
  flex-direction: column;
  padding: 0 28px;
  max-width: 1300px;
  margin: 0 auto;
}

/* ── Row 1: logo + controls ── */
.navbar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 8px 0 6px;
}

/* ── Row 2: nav links ── */
.navbar nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 100%;
  padding: 4px 0 6px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.navbar .logo {
  color: var(--secondary);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.navbar-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar nav a {
  color: #c9d6e3;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 11px;
  border-radius: 6px;
  transition: all 0.2s;
  white-space: nowrap;
}

.navbar nav a:hover {
  background: var(--logo-blue);
  color: var(--white);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: background 0.2s;
}
.hamburger:hover { background: rgba(255,255,255,0.1); }
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #071428 0%, #0d2240 35%, #173A6A 70%, #1a4f8a 100%) !important;
  color: var(--white);
  padding: 120px 32px 100px;
  text-align: center;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Decorative glows — logo blue tones */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 15% 60%, rgba(46,156,219,0.30) 0%, transparent 65%),
    radial-gradient(ellipse 45% 40% at 85% 25%, rgba(255,179,2,0.08) 0%, transparent 55%);
  z-index: 0;
  pointer-events: none;
}

/* Subtle grid */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  z-index: 0;
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,179,2,0.18);
  border: 1px solid rgba(255,179,2,0.55);
  color: #ffd166;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 30px;
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--secondary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero h1 span {
  color: var(--secondary);
}

.hero p {
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto 40px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.9;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--secondary);
  color: var(--dark);
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(255,179,2,0.35);
  letter-spacing: 0.3px;
}

.btn:hover {
  background: #ffc933;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,179,2,0.5);
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.35);
  color: var(--white);
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  box-shadow: none;
  transform: translateY(-2px);
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.4);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-hint .arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,0.3);
  border-bottom: 2px solid rgba(255,255,255,0.3);
  transform: rotate(45deg);
  animation: bounce 1.8s infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(5px); }
}

/* ---- Logo image ---- */
.logo-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
}

.navbar .logo::before { display: none; } /* remove the CSS dot now we have real logo */

.navbar .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-img {
  width: 40px;
  height: 40px;
}

/* ---- Hero two-column ---- */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
  text-align: left;
}

.hero-content { text-align: left; }

.hero-btns { justify-content: flex-start; }

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-svg {
  width: 100%;
  max-width: 480px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 24px 70px rgba(0,0,0,0.5), 0 0 0 3px rgba(255,179,2,0.3);
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---- About image ---- */
.about-img {
  width: 100%;
  border-radius: 16px;
  display: block;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

/* ---- News card image ---- */
.news-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--secondary);
  padding: 0;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid rgba(0,0,0,0.1);
}

.stat-item {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid rgba(0,0,0,0.1);
}

.stat-item:last-child { border-right: none; }

.stat-item .num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-item .lbl {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(26,26,46,0.7);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ===== SECTIONS ===== */
section {
  padding: 90px 32px;
}

section:nth-child(even):not(.hero) {
  background: var(--light-bg);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .label {
  display: inline-block;
  color: var(--logo-blue);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.section-header p {
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  font-size: 1rem;
}

.divider {
  width: 48px;
  height: 4px;
  background: var(--secondary);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h3 {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--dark);
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.about-text h3 em {
  font-style: normal;
  color: var(--primary);
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 0.97rem;
}

.about-highlight {
  background: linear-gradient(135deg, rgba(46,156,219,0.08), rgba(208,232,245,0.2));
  border-left: 4px solid var(--logo-blue);
  padding: 18px 22px;
  border-radius: 0 10px 10px 0;
  font-style: italic;
  color: var(--primary);
  font-weight: 600;
  margin-top: 24px;
  font-size: 1rem;
}

.about-visual {
  background: linear-gradient(145deg, var(--dark2), var(--logo-navy));
  border-radius: 20px;
  padding: 52px 36px;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-visual::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: rgba(255,179,2,0.08);
  border-radius: 50%;
}

.about-visual::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -30px;
  width: 200px;
  height: 200px;
  background: rgba(26,107,138,0.2);
  border-radius: 50%;
}

.about-visual .acronym {
  position: relative;
  z-index: 1;
  font-size: 3.8rem;
  font-weight: 900;
  letter-spacing: 10px;
  color: var(--secondary);
  line-height: 1;
  text-shadow: 0 0 40px rgba(255,179,2,0.4);
}

.about-visual .full-name {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  font-size: 0.88rem;
  opacity: 0.7;
  line-height: 1.9;
  letter-spacing: 0.5px;
}

.about-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.about-tag {
  background: rgba(255,179,2,0.15);
  border: 1px solid rgba(255,179,2,0.3);
  color: var(--secondary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ===== CARDS ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 26px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--logo-blue), var(--logo-navy));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.card:hover::before {
  transform: scaleX(1);
}

.card .icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(46,156,219,0.15), rgba(208,232,245,0.3));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}

.card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== GOAL ===== */
.goal-wrapper {
  max-width: 820px;
  margin: 0 auto;
}

.goal-box {
  background: linear-gradient(145deg, var(--dark2), var(--logo-navy));
  color: var(--white);
  border-radius: 24px;
  padding: 60px 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.goal-box::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  background: rgba(255,179,2,0.07);
  border-radius: 50%;
}

.goal-box::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 280px;
  height: 280px;
  background: rgba(26,107,138,0.15);
  border-radius: 50%;
}

.goal-box .quote-mark {
  position: relative;
  z-index: 1;
  font-size: 6rem;
  line-height: 0.6;
  color: var(--secondary);
  font-family: Georgia, serif;
  opacity: 0.5;
}

.goal-box p {
  position: relative;
  z-index: 1;
  font-size: 1.15rem;
  line-height: 1.95;
  margin: 24px 0 36px;
  color: #c9d6e3;
}

.goal-pillars {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.pillar-tag {
  background: rgba(255,179,2,0.15);
  border: 1px solid rgba(255,179,2,0.35);
  color: var(--secondary);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ===== VISION / MISSION ===== */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.vm-box {
  border-radius: 20px;
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
}

.vm-box.vision {
  background: linear-gradient(145deg, var(--dark2), var(--logo-navy));
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.vm-box.mission {
  background: linear-gradient(145deg, #7a4f00, var(--secondary));
  color: var(--dark);
  box-shadow: var(--shadow-md);
}

.vm-box .vm-label {
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.65;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vm-box h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}

.vm-box p {
  font-size: 0.97rem;
  line-height: 1.85;
}

.vm-box.vision p { color: #b0c4d8; }
.vm-box.mission p { color: rgba(26,26,46,0.8); }

/* ===== TEAM ===== */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.team-card {
  flex: 0 1 240px;
  text-align: center;
  background: var(--white);
  border-radius: 20px;
  padding: 36px 22px 28px;
  border: 1px solid var(--border);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.team-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--logo-blue), var(--logo-navy));
  transform: scaleX(0);
  transition: transform 0.3s;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.team-card:hover::after {
  transform: scaleX(1);
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--logo-blue), var(--logo-navy));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 auto 18px;
  border: 3px solid var(--logo-blue);
  box-shadow: 0 4px 16px rgba(46,156,219,0.35);
  overflow: hidden;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.team-card .role {
  font-size: 0.75rem;
  color: var(--logo-blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  padding: 4px 0;
}

.team-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== PARTNERS ===== */
.partners-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.partner-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 22px;
  transition: all 0.25s;
}

.partner-item:hover {
  border-color: var(--logo-blue);
  box-shadow: 0 4px 16px rgba(46,156,219,0.15);
  transform: translateY(-2px);
}

.partner-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(26,107,138,0.1), rgba(159,211,232,0.2));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.partner-item span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

/* ===== AWARDS ===== */
.awards-placeholder {
  text-align: center;
  padding: 56px 40px;
  color: var(--text-muted);
  border: 2px dashed var(--border);
  border-radius: 16px;
  max-width: 480px;
  margin: 0 auto;
}

.awards-placeholder .trophy {
  font-size: 3.5rem;
  margin-bottom: 14px;
}

.awards-placeholder h3 {
  color: var(--text);
  margin-bottom: 8px;
}

/* ===== NEWS ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.news-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.news-img {
  height: 190px;
  background: linear-gradient(145deg, #0f3460, var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.news-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.3));
}

.news-body { padding: 24px 22px; }

.news-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.news-meta span {
  color: var(--logo-blue);
  font-weight: 700;
}

.news-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.5;
}

.news-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 52px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  align-items: flex-start;
}

.ci-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(26,107,138,0.1), rgba(159,211,232,0.2));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid rgba(26,107,138,0.15);
}

.ci-text strong {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 3px;
  font-weight: 700;
}

.ci-text span {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 28px;
  letter-spacing: -0.3px;
}

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

.form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 7px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 0.93rem;
  font-family: inherit;
  color: var(--text);
  transition: all 0.2s;
  outline: none;
  background: var(--light-bg);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--logo-blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(46,156,219,0.15);
}

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

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--logo-blue), var(--logo-navy));
  color: var(--white);
  font-weight: 700;
  padding: 14px;
  border: none;
  border-radius: 10px;
  font-size: 0.97rem;
  cursor: pointer;
  transition: all 0.25s;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 16px rgba(26,107,138,0.3);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,107,138,0.4);
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: #8892a4;
  padding: 60px 32px 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto 44px;
}

.footer-brand .logo {
  color: var(--secondary);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-decoration: none;
  display: block;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.8;
  max-width: 320px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  color: #8892a4;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--secondary); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar .container { padding: 0 20px; }

  .navbar nav {
    display: none;
    flex-direction: column;
    flex-wrap: nowrap;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark2);
    padding: 12px 20px 20px;
    gap: 4px;
    border-top: 1px solid rgba(255,255,255,0.08);
    justify-content: flex-start;
    z-index: 999;
  }

  .navbar nav.open { display: flex; }
  .hamburger { display: flex; }

  .hero { min-height: auto; padding: 90px 24px 80px; }
  .hero h1 { font-size: 1.9rem; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .hero-content { text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-svg { max-width: 320px; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }

  .about-grid,
  .vm-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .goal-box { padding: 40px 24px; }
  .contact-form { padding: 28px 22px; }

  section { padding: 64px 20px; }
}

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; max-width: 280px; }
}
