/* ==========================================================================
   PlowAfrika – Complete Mobile-First CSS (By LitrixGlobal)
   Last updated structure: January 2026
   Adjusted for smaller fonts and reduced footer height
   ========================================================================== */

/* ==========================================================
   GLOBAL RESET + SYSTEM
========================================================== */

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
  overflow-x: hidden;
}

/* ==========================================================
   ROOT VARIABLES
========================================================== */

:root {
  --primary: #2e7d32;
  --primary-d: #1b5e20;

  --text: #111827;
  --text-light: #4b5563;

  --radius: 16px;

  --shadow-sm: 0 4px 12px rgba(0,0,0,.08);
  --shadow-md: 0 10px 30px rgba(0,0,0,.12);
  --shadow-lg: 0 24px 60px rgba(0,0,0,.18);

  --transition: all .35s ease;
}

/* ==========================================================
   GLOBAL RESPONSIVE MEDIA (CRITICAL FIX)
========================================================== */

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

/* Prevent flex/grid children overflow */
.container,
.story-container,
.team-container,
.flow-cards,
.story-block,
.hero-text,
.hero-image,
.story-img,
.team-card {
  min-width: 0;
}

/* ==========================================================
   CORE LAYOUT HELPERS
========================================================== */

main {
  width: 100%;
}

.sec {
  padding: clamp(48px, 10vw, 80px) 16px;
}

.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 16px;
}

/* ─────────────────────────────────────────────
   BUTTONS
────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--btn-pad);
  font-size: var(--fs-body);
  font-weight: 600;
  border-radius: var(--btn-rad);
  cursor: pointer;
  text-decoration: none;
  border: none;
  background: var(--primary);
  color: #fff;
  transition: all 0.22s ease;
}

.btn-primary:hover {
  background: var(--primary-d);
  border: solid 2px #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(46,125,50,0.28);
}

.btn-outline:hover {
  background: var(--primary-d);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(46,125,50,0.28);
}


/* ─────────────────────────────────────────────
   NAVIGATION
────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--border);
  height: var(--nav-height);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo img {
  height: 60px;
  width: auto;
  transition: height 0.3s ease;
}

/* Hamburger menu */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hamburger X animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Nav links (mobile hidden initially) */
.nav-links {
  display: none;
  position: absolute;
  top: 100%;
  right: 16px;
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  padding: 12px 20px;
  min-width: 180px;
  list-style: none;
  z-index: 999;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.22s ease-out;
  pointer-events: none;
  flex-direction: column;
  gap: 8px;
}

.nav-links.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Triangle arrow for mobile */
.nav-links.active::after {
  content: "";
  position: absolute;
  top: -8px;
  right: 24px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
}

.nav-links a {
  display: block;
  padding: 10px 4px;
  color: var(--text);
  font-weight: 500;
  font-size: var(--fs-link);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

/* CTA always visible on desktop/tablet */
.nav-cta {
  display: none;
}

/* ─────────────────────────────────────────────
   RESPONSIVE – TABLET & DESKTOP
────────────────────────────────────────────── */
@media (min-width: 768px) {
  .hamburger {
    display: none;
  }

  .nav-links {
    display: flex !important;
    flex-direction: row;
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    background: none;
    box-shadow: none;
    gap: var(--gap-md);
  }

  .nav-links a {
    padding: 8px 12px;
  }

  .nav-cta {
    display: block;
  }

  .logo img {
    height: 84px;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 50px;
  }
}


/* =====================================================
   HERO SECTION — CINEMATIC, MOBILE-FIRST, SYSTEM-ALIGNED
   ===================================================== */

/* =====================================================
   HERO SECTION — LIGHTHOUSE OPTIMIZED & MOBILE SAFE
   ===================================================== */

/* ===========================
   HERO BASE
=========================== */
#hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #0b1f14;
  isolation: isolate;
}

/* ===========================
   DESKTOP / TABLET BG SLIDER
=========================== */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(124,194,66,.25), transparent 40%),
    linear-gradient(
      to bottom,
      rgba(5,15,10,.7),
      rgba(5,15,10,.9)
    );
  z-index: 2;
}

/* Slides */
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  animation: heroSlider 24s infinite;
}

.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 6s; }
.slide:nth-child(3) { animation-delay: 12s; }
.slide:nth-child(4) { animation-delay: 18s; }

@keyframes heroSlider {
  0% {
    opacity: 0;
    transform: scale(1.08);
  }
  6% {
    opacity: 1;
  }
  25% {
    opacity: 1;
    transform: scale(1);
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* ===========================
   MOBILE BACKGROUND
=========================== */
.hero-bg-mobile {
  display: none;
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(5,15,10,.75), rgba(5,15,10,.95)),
    url('images/inclusive.webp') center / cover no-repeat;
  z-index: 0;
}

/* ===========================
   CONTENT LAYER
=========================== */
.hero-container {
  position: relative;
  z-index: 5;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(96px, 12vh, 140px) clamp(20px, 6vw, 80px);
}

.hero-content {
  max-width: 1100px;
  text-align: center;
}

/* ===========================
   HERO TEXT
=========================== */
.hero-headline {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  text-shadow:
    0 10px 30px rgba(0,0,0,.4);
}

.hero-subheading {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.7;
  max-width: 760px;
  margin-inline: auto;
  color: #d1fae5;
  opacity: 0.95;
}

/* ===========================
   CTA GROUP
=========================== */
.hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: all 0.35s ease;
  position: relative;
}

/* Primary */
.btn-primary {
  background: linear-gradient(135deg, #7cc242, #2e7d32);
  color: #0b1f14;
  box-shadow:
    0 10px 30px rgba(124,194,66,.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 16px 45px rgba(124,194,66,.5);
}

/* Outline */
.btn-outline {
  border: 1px solid rgba(255,255,255,.35);
  color: #ffffff;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(6px);
}

.btn-outline:hover {
  background: rgba(255,255,255,.15);
  transform: translateY(-3px);
}

/* ===========================
   ANIMATIONS
=========================== */
.fade-up {
  animation: fadeUp 1.2s ease forwards;
  opacity: 0;
}

.fade-up-delay-1 { animation-delay: .3s; }
.fade-up-delay-2 { animation-delay: .6s; }

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===========================
   RESPONSIVE LOGIC
=========================== */
@media (max-width: 900px) {
  .hero-bg {
    display: none;
  }
  .hero-bg-mobile {
    display: block;
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding-top: 96px;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}





/* ─────────────────────────────────────────────
   VALUE PROPOSITION & WHO WE SERVE (COMPILED)
   Mobile First • Framer-style Motion • Hero-aligned
   ───────────────────────────────────────────── */

.value-prop {
  padding: clamp(88px, 10vw, 140px) 20px;
  background: #f9faf9;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

/* Main container */
#value-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 48px;
}

/* ───────── LEFT COLUMN ───────── */
#value-column h2 {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--primary);
  margin-bottom: 16px;
}

#value-column p {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.7;
  max-width: 60ch;
}

/* ───────── RIGHT COLUMN ───────── */
#serve-column h2 {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
  color: var(--primary);
}

/* Cards container */
#whoCrd {
  display: grid;
  gap: 20px;
}

/* Individual card */
.serve-card {
  background: #ffffff;
  padding: 22px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}

.serve-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* Icon */
.serve-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(20, 60, 45, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: transform 0.3s ease;
}

.serve-icon i {
  font-size: 18px;
  color: var(--primary);
}

.serve-card:hover .serve-icon {
  transform: scale(1.08);
}

/* Card text */
.serve-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-dark);
}

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

/* ─────────────────────────────────────────────
   FRAMER-STYLE ENTRANCE ANIMATIONS
   ───────────────────────────────────────────── */

@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    animation: fadeUp 0.8s ease-out both;
  }

  .fade-up-delay-1 { animation-delay: 0.15s; }
  .fade-up-delay-2 { animation-delay: 0.3s; }
  .fade-up-delay-3 { animation-delay: 0.45s; }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─────────────────────────────────────────────
   RESPONSIVE BREAKPOINTS
   ───────────────────────────────────────────── */

/* Large Phones */
@media (min-width: 480px) {
  .value-prop {
    padding-left: 24px;
    padding-right: 24px;
  }

  #value-column h2 {
    font-size: 1.9rem;
  }

  #whoCrd {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablets */
@media (min-width: 768px) {
  .value-prop {
    padding-left: 32px;
    padding-right: 32px;
  }

  #value-container {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }

  #value-column h2 {
    font-size: 2.2rem;
  }

  #serve-column h2 {
    font-size: 1.6rem;
  }
}

/* Laptops */
@media (min-width: 1024px) {
  .value-prop {
    padding-left: 40px;
    padding-right: 40px;
  }

  #value-container {
    gap: 80px;
  }

  #value-column p {
    font-size: 1rem;
  }
}

/* Desktops / Wide Screens */
@media (min-width: 1280px) {
  #value-container {
    gap: 96px;
  }

  #value-column h2 {
    font-size: 2.4rem;
  }

  .serve-card {
    padding: 26px;
  }
}



/* ─────────────────────────────────────────────
   SOLUTIONS PREVIEW / KEY BENEFITS (COMPILED)
   Mobile First • Framer-style Motion • Hero-aligned
   ───────────────────────────────────────────── */

.solutions-prev {
  padding: clamp(88px, 10vw, 140px) 20px;
  background: #ffffff;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

/* Section title */
#solutions-prev h2 {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--primary);
  margin-bottom: 56px;
}

/* Benefits grid */
#benefits {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

/* Individual benefit card */
.bcard {
  background: #ffffff;
  padding: 32px 24px;
  border-radius: 14px;
  border: 1px solid rgba(20, 60, 45, 0.12);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}

.bcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* Icon */
.ben-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(20, 60, 45, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: transform 0.3s ease;
}

.ben-icon i {
  font-size: 22px;
  color: var(--primary);
}

.bcard:hover .ben-icon {
  transform: scale(1.08);
}

/* Card title */
.bcard h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark);
}

/* Card text */
.bcard p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ─────────────────────────────────────────────
   FRAMER-STYLE ENTRANCE ANIMATIONS
   (Reuse from previous section)
   ───────────────────────────────────────────── */

@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    animation: fadeUp 0.8s ease-out both;
  }

  .fade-up-delay-1 { animation-delay: 0.15s; }
  .fade-up-delay-2 { animation-delay: 0.3s; }
  .fade-up-delay-3 { animation-delay: 0.45s; }
}

/* ─────────────────────────────────────────────
   RESPONSIVE BREAKPOINTS
   ───────────────────────────────────────────── */

/* Large Phones */
@media (min-width: 480px) {
  .solutions-prev {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* Tablets */
@media (min-width: 768px) {
  #solutions-prev h2 {
    font-size: 2.1rem;
  }

  #benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Laptops */
@media (min-width: 1024px) {
  .solutions-prev {
    padding-left: 40px;
    padding-right: 40px;
  }

  #benefits {
    gap: 32px;
  }
}

/* Desktops / Wide Screens */
@media (min-width: 1280px) {
  #solutions-prev h2 {
    font-size: 2.4rem;
  }

  #benefits {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Center the last card when odd */
  .bcard:last-child {
    grid-column: 2 / span 2;
  }
}


/* ─────────────────────────────────────────────
   IMPACT SNAPSHOT / STATS BAR (COMPILED)
   Mobile First • Framer-style Motion • Hero-aligned
   ───────────────────────────────────────────── */

.impact-snapshot {
  background: var(--primary);
  padding: clamp(72px, 8vw, 120px) 20px;
  display: grid;
  gap: 40px;
  text-align: center;
}

/* Individual stat card */
.statCard {
  color: #ffffff;
  position: relative;
}

/* Numbers */
.statCard h1 {
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

/* Labels */
.statCard span {
  font-size: 0.95rem;
  opacity: 0.9;
  letter-spacing: 0.3px;
}

/* ─────────────────────────────────────────────
   FRAMER-STYLE MICRO-INTERACTION
   ───────────────────────────────────────────── */

@media (prefers-reduced-motion: no-preference) {
  .statCard {
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .statCard:hover {
    transform: translateY(-4px);
  }
}

/* ─────────────────────────────────────────────
   RESPONSIVE BREAKPOINTS
   ───────────────────────────────────────────── */

/* Tablets */
@media (min-width: 768px) {
  .impact-snapshot {
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 0;
  }

  .statCard:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 15%;
    right: 0;
    width: 1px;
    height: 70%;
    background: rgba(255, 255, 255, 0.25);
  }
}

/* Desktops / Large Screens */
@media (min-width: 1100px) {
  .impact-snapshot {
    padding: 96px 0;
  }

  .statCard h1 {
    font-size: 3.4rem;
  }
}


/* ─────────────────────────────────────────────
   CTA & PARTNERS / ECOSYSTEM (COMPILED)
   Mobile First • Framer-style Motion • Conversion-focused
   ───────────────────────────────────────────── */

.cta-section {
  background: #e9f2e6;
  padding: clamp(88px, 10vw, 140px) 20px;
  display: grid;
  gap: 56px;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

/* ───────── CTA BLOCK ───────── */

#homeCta {
  background: #f3f8f1;
  border-radius: 16px;
  padding: clamp(32px, 6vw, 56px) 24px;
  max-width: 720px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

#homeCta h3 {
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--primary-d);
  margin-bottom: 12px;
}

#homeCta p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* CTA group (reused from hero) */
#homeCta .hero-cta-group {
  margin-top: 4px;
}

/* ───────── PARTNERS SECTION ───────── */

#disPartners {
  max-width: 1100px;
}

#disPartners h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-d);
  margin-bottom: 20px;
}

/* Logo grid */
#prtBox {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Logo card */
.prtImg {
  background: #ffffff;
  border-radius: 10px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prtImg:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

/* Logo image */
.prtImg img {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
  opacity: 0.85;
  filter: grayscale(100%);
  transition: opacity 0.25s ease, filter 0.25s ease;
}

.prtImg:hover img {
  opacity: 1;
  filter: grayscale(0);
}

/* ─────────────────────────────────────────────
   RESPONSIVE BREAKPOINTS
   ───────────────────────────────────────────── */

/* Tablets */
@media (min-width: 768px) {
  .cta-section {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 72px;
  }

  #prtBox {
    grid-template-columns: repeat(5, 1fr);
  }

  #homeCta h3 {
    font-size: 2.1rem;
  }
}

/* Laptops & Desktops */
@media (min-width: 1100px) {
  .cta-section {
    padding: 120px 0;
  }

  #homeCta {
    padding: 64px;
  }

  .prtImg {
    height: 64px;
  }
}


   /* ──────────────────────────────────────────
   FOOTER – CREATIVE UPGRADE
────────────────────────────────────────── */
.site-footer {
  position: relative;
  background: #0f2a1c; /* Keep your original color */
  color: #e5e7eb;
  padding-top: 64px;
  font-size: var(--fs-body);
  overflow: hidden;
  min-height: 25vh;
}

/* Floating decorative blobs */
.site-footer::before,
.site-footer::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  z-index: 0;
}

.site-footer::before {
  width: 280px;
  height: 280px;
  background: rgba(124, 194, 66, 0.2);
  top: -60px;
  left: -80px;
  animation: floatFooter 12s ease-in-out infinite alternate;
}

.site-footer::after {
  width: 220px;
  height: 220px;
  background: rgba(46, 125, 50, 0.2);
  bottom: -50px;
  right: -60px;
  animation: floatFooter 15s ease-in-out infinite alternate-reverse;
}

/* Floating animation */
@keyframes floatFooter {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(8deg); }
}

/* Container reuse */
.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
  z-index: 2; /* ensure blobs are behind */
}

/* Footer grid columns */
.footer-grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
  }
}

/* Column cards with subtle frosted glass effect */
.footer-column {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-column:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

/* Headings */
.footer-column h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #ffffff;
  position: relative;
}

.footer-column h3::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: #7cc242;
  margin-top: 0.5rem;
  border-radius: 2px;
}

/* Contact List */
.contact-list {
  list-style: none;
  display: grid;
  gap: 16px;
}

.contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-list i {
  color: var(--primary);
  font-size: 0.95rem;
  margin-top: 3px;
}

.contact-list span {
  display: block;
  font-size: 0.75rem;
  color: #9ca3af;
}

.contact-list a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.25s ease;
}

.contact-list a:hover {
  text-decoration: underline;
  color: #ffffff;
}

/* Quick Links */
.footer-links {
  list-style: none;
  display: grid;
  gap: 12px;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

/* Social Icons */
.social-icons {
  list-style: none;
  display: flex;
  gap: 14px;
  margin-top: 8px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #7cc242;
  color: #0f2a1c;
  transform: scale(1.2);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 48px;
  padding: 20px 16px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: #9ca3af;
}

/* Extra responsiveness */
@media (max-width: 480px) {
  .site-footer {
    padding-top: 56px;
    min-height: 28vh;
  }

  .footer-column {
    padding: 1rem;
  }
}
