/* ============================================================
   KIDRON VALLEY TECHNOLOGIES — WEBSITE STYLESHEET
   Design Direction: Refined Corporate / Government Consulting
   Palette: Deep Navy + Teal Accent + Warm White
   ============================================================ */

:root {
  --navy: #0D2340;
  --navy-mid: #1B3A5C;
  --teal: #00C6C6;
  --teal-light: #4DD8D8;
  --teal-pale: #E6F9F9;
  --white: #FFFFFF;
  --off-white: #F7F9FB;
  --gray-100: #EEF1F5;
  --gray-300: #C5CDD8;
  --gray-500: #7A8899;
  --gray-700: #3D4F63;
  --text: #1A2B3C;
  --text-light: #5A6E82;
  --accent-warm: #F5A623;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'Space Mono', monospace;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 12px rgba(13,35,64,0.07);
  --shadow-md: 0 8px 32px rgba(13,35,64,0.12);
  --shadow-lg: 0 20px 60px rgba(13,35,64,0.18);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── CONTAINER ── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── TYPOGRAPHY UTILITIES ── */
.section-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
  display: block;
}
.section-label.light { color: var(--teal-light); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-title.light { color: var(--white); }
.section-title em { font-style: italic; color: var(--teal); }
.section-title.light em { color: var(--teal-light); }
.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
}
.section-sub.light { color: rgba(255,255,255,0.75); }
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-sub { margin: 0 auto; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 13px 28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,198,198,0.35);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 6px;
  border: 1.5px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}
.btn-ghost:hover {
  border-color: var(--teal-light);
  color: var(--teal-light);
  background: rgba(0,198,198,0.08);
}
.btn-primary.full-width { width: 100%; justify-content: center; }

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0;
}
#navbar.scrolled {
  background: rgba(13,35,64,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon { width: 40px; height: 40px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; }
.logo-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.04em;
}
.logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--teal-light);
  text-transform: uppercase;
  font-family: var(--font-mono);
}
/* ── LOGO IMAGE (responsive) ── */
.site-logo {
  display: block;
  height: 48px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  flex-shrink: 0;
}
.site-logo--footer {
  height: 56px;
  max-width: 220px;
}
.logo-name {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--teal-light);
  letter-spacing: 0.02em;
  line-height: 1.3;
  padding-left: 14px;
  border-left: 1.5px solid rgba(0,198,198,0.5);
  white-space: nowrap;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
/* Ensure nav logo name is always teal regardless of link color inheritance */
#navbar .logo-name,
#navbar a.logo-wrap .logo-name {
  color: var(--teal-light) !important;
}
.logo-name--footer {
  color: #ffffff;
  font-size: 0.95rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
@media (max-width: 480px) {
  .logo-name { display: none; }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  padding: 8px 14px;
  border-radius: 4px;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--teal-light); }
.nav-links a.nav-cta {
  background: var(--teal);
  color: var(--navy);
  font-weight: 600;
  padding: 9px 20px;
}
.nav-links a.nav-cta:hover {
  background: var(--teal-light);
  color: var(--navy);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 32px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,198,198,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,198,198,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
}
.hero-shape.s1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,198,198,0.12) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.hero-shape.s2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,198,198,0.08) 0%, transparent 70%);
  bottom: -80px; left: -80px;
}
.hero-shape.s3 {
  width: 200px; height: 200px;
  background: var(--teal);
  opacity: 0.06;
  top: 50%; right: 20%;
  transform: translateY(-50%) rotate(45deg);
  border-radius: 20px;
}
.hero-content {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.hero-text {
  position: relative;
  z-index: 2;
}
.hero-media {
  position: relative;
  z-index: 1;
}
.hero-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img {
  width: 100%;
  max-width: 540px;
  height: auto;
  display: block;
  z-index: 2;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.4));
  animation: floatImg 6s ease-in-out infinite;
}
.hero-img-glow {
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(0,198,198,0.15) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}
@keyframes floatImg {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
.hero-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--teal);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
}
.hero-title .line { display: block; }
.hero-title .accent { color: var(--teal); }
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-pillars {
  position: relative;
  max-width: 1240px;
  margin: 80px auto 0;
  width: 100%;
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 40px;
}
.pillar {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  font-weight: 500;
  padding-right: 32px;
}
.pillar:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,0.08);
  margin-right: 32px;
}
.pillar-icon { color: var(--teal); font-size: 1.2rem; }
.scroll-hint {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.35);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.8; }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.section-about {
  padding: 120px 0;
  background: var(--white);
}
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}
.about-left .section-title { margin-bottom: 24px; }
.about-accent-bar {
  width: 64px;
  height: 4px;
  background: var(--teal);
  border-radius: 2px;
}
.about-lead {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--navy-mid);
  margin-bottom: 20px;
  line-height: 1.7;
}
.about-right p {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.75;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pillar-card {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-pale);
}
.pillar-card:hover::before { transform: scaleX(1); }
.pc-number {
  font-family: var(--font-mono);
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-mid, #008888) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 20px;
  display: inline-block;
  transition: transform 0.4s ease;
}
.pillar-card:hover .pc-number {
  transform: scale(1.15) rotate(-5deg);
}
.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.pillar-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.section-services {
  padding: 120px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.section-services::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,198,198,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,198,198,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
}
.services-tabs { position: relative; }
.tabs-nav {
  display: flex;
  gap: 4px;
  margin-bottom: 48px;
  background: rgba(255,255,255,0.06);
  padding: 4px;
  border-radius: 8px;
  width: fit-content;
}
.tab-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 10px 24px;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
}
.tab-btn.active {
  background: var(--teal);
  color: var(--navy);
  font-weight: 600;
}
.tab-btn:not(.active):hover { color: var(--white); background: rgba(255,255,255,0.08); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.svc-card:hover {
  background: rgba(0,198,198,0.08);
  border-color: rgba(0,198,198,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,198,198,0.1);
}
.svc-card:hover::after { opacity: 1; }
.svc-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
}
.svc-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}
.svc-card p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.65; margin-bottom: 20px; }
.svc-list li {
  font-size: 0.8rem;
  color: var(--teal-light);
  padding: 4px 0 4px 16px;
  position: relative;
}
.svc-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  font-size: 0.7rem;
  color: var(--teal);
}

/* ============================================================
   INDUSTRIES
   ============================================================ */
.section-industries {
  padding: 120px 0;
  background: var(--off-white);
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ind-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden; /* Ensure image doesn't bleed out of rounded corners */
  display: flex;
  flex-direction: column;
  padding: 0; /* Remove default padding to allow full-width image */
}
.ind-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,198,198,0.3);
}
.ind-card.featured {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.ind-icon { 
  height: 220px; /* Large banner height */
  width: 100%;
  margin-bottom: 0;
  display: block;
  overflow: hidden;
}
.ind-icon-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover; /* Fill the card width and height */
  transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.ind-card:hover .ind-icon-img {
  transform: scale(1.1);
}
.ind-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 24px 12px;
  line-height: 1.3;
}
.ind-card.featured h3 { color: var(--teal-light); }
.ind-card p { 
  font-size: 0.9rem; 
  color: var(--text-light); 
  line-height: 1.7; 
  margin: 0 24px 32px;
}
.ind-card.featured p { color: rgba(255,255,255,0.7); }

/* ============================================================
   CLIMATE SECTION
   ============================================================ */
.section-climate {
  padding: 120px 0;
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}
.climate-bg { position: absolute; inset: 0; pointer-events: none; }
.climate-shape {
  position: absolute;
  border-radius: 50%;
}
.climate-shape.c1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,198,198,0.1) 0%, transparent 70%);
  top: -100px; left: -100px;
}
.climate-shape.c2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,198,198,0.07) 0%, transparent 70%);
  bottom: 0; right: 0;
}
.climate-intro {
  max-width: 780px;
  margin: 0 auto 64px;
  text-align: center;
}
.climate-intro p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}
.climate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}
.clim-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(0,198,198,0.15);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
}
.clim-card:hover {
  background: rgba(0,198,198,0.08);
  border-color: rgba(0,198,198,0.4);
  transform: translateY(-4px);
}
.clim-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 12px;
}
.clim-card h3 {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.35;
}
.clim-card p { font-size: 0.84rem; color: rgba(255,255,255,0.6); line-height: 1.65; }
.climate-funds {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,198,198,0.15);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.climate-funds h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 36px;
  text-align: center;
}
.funds-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.fund-group { display: flex; flex-direction: column; gap: 8px; }
.fund-group-title {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 4px;
}
.fund-group span { font-size: 0.84rem; color: rgba(255,255,255,0.65); }

/* ============================================================
   APPROACH SECTION
   ============================================================ */
.section-approach {
  padding: 120px 0;
  background: var(--white);
}
.approach-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.approach-left .section-title { margin-bottom: 20px; }
.approach-left > p { color: var(--text-light); margin-bottom: 48px; }
.approach-steps { display: flex; flex-direction: column; gap: 32px; }
.ap-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.ap-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--teal-pale);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  font-weight: 700;
}
.ap-step h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.ap-step p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; }
.differentiators { margin-bottom: 48px; }
.differentiators h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
}
.diff-card {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-100);
  align-items: flex-start;
}
.diff-marker {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  margin-top: 8px;
  flex-shrink: 0;
}
.diff-card h4 {
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  font-size: 0.95rem;
}
.diff-card p { font-size: 0.86rem; color: var(--text-light); line-height: 1.65; }
.certifications { background: var(--off-white); border-radius: var(--radius); padding: 28px; }
.cert-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 16px;
}
.cert-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.cert-tags span {
  background: var(--white);
  border: 1px solid var(--gray-100);
  color: var(--navy-mid);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 20px;
}

/* ============================================================
   SDG SECTION
   ============================================================ */
.section-sdg {
  padding: 120px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.section-sdg::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 198, 198, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.sdg-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.sdg-left .section-title { color: var(--white); margin-bottom: 24px; }
.sdg-left .section-title em { color: var(--teal-light); }
.sdg-left .section-label { color: var(--teal-light); }
.sdg-left p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.8;
}
.sdg-left .btn-primary { margin-top: 32px; }

.sdg-goals {
  position: relative;
  z-index: 2;
}
.sdg-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(0, 198, 198, 0.1);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.sdg-img:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4), 0 0 50px rgba(0, 198, 198, 0.15);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.section-contact {
  padding: 120px 0;
  background: var(--navy-mid);
  position: relative;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-left .section-title { margin-bottom: 16px; }
.contact-desc { color: rgba(255,255,255,0.65); margin-bottom: 48px; }
.contact-details { display: flex; flex-direction: column; gap: 28px; }
.cd-item { display: flex; gap: 16px; align-items: flex-start; }
.cd-icon { font-size: 1.3rem; margin-top: 2px; }
.cd-item strong { display: block; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal-light); font-family: var(--font-mono); margin-bottom: 4px; }
.cd-item p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.65; }
.cd-item p a { color: var(--teal-light); transition: color 0.2s; }
.cd-item p a:hover { color: var(--teal); }
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: var(--shadow-lg);
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-700);
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--off-white);
  border: 1.5px solid var(--gray-100);
  border-radius: 8px;
  padding: 11px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  resize: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,198,198,0.12);
  background: var(--white);
}
.form-success {
  margin-top: 12px;
  font-size: 0.88rem;
  color: var(--teal);
  text-align: center;
  font-weight: 500;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #060F1A;
  padding: 72px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 80px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .logo-wrap { margin-bottom: 20px; }
.footer-tagline { color: var(--teal-light); font-size: 0.82rem; margin-bottom: 6px; }
.footer-motto { color: rgba(255,255,255,0.4); font-size: 0.82rem; font-style: italic; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.fl-col h5 {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.fl-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.fl-col a:hover { color: var(--teal-light); }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .service-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .climate-grid { grid-template-columns: repeat(2, 1fr); }
  .funds-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-tag { justify-content: center; }
  .hero-tag::before { display: none; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-img { max-width: 400px; }
  .hero-media { order: -1; } /* Image above text on mobile */

  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .approach-layout { grid-template-columns: 1fr; gap: 48px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .sdg-layout { grid-template-columns: 1fr; gap: 48px; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  #hero { padding: 100px 20px 60px; }
  .hero-pillars { flex-direction: column; gap: 16px; }
  .pillar:not(:last-child) { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); margin-right: 0; padding-bottom: 16px; padding-right: 0; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: rgba(13,35,64,0.98);
    padding: 20px;
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; }
  .section-about, .section-services, .section-industries,
  .section-climate, .section-approach, .section-sdg,
  .section-contact { padding: 72px 0; }
  .pillars-grid { grid-template-columns: 1fr; }
  .service-cards-grid { grid-template-columns: 1fr; }
  .climate-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .funds-list { grid-template-columns: 1fr 1fr; }
  .sdg-goals { grid-template-columns: repeat(3, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .scroll-hint { display: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.5rem; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .sdg-goals { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .sdg-goal { padding: 12px 6px; font-size: 1.1rem; }
  .climate-funds { padding: 28px 20px; }
  .footer-links { grid-template-columns: 1fr; }
}
