/* ===================================================
   GAUS SUSTAINABILITY PORTAL - MAIN STYLESHEET
   Grand Asian University Sialkot
   =================================================== */

/* ---- CSS VARIABLES ---- */
:root {
  --primary:        #0d3320;
  --primary-mid:    #14532d;
  --primary-light:  #2d6a4f;
  --accent:         #52b788;
  --accent-light:   #74c69d;
  --brand-green:    #1a8a50;
  --topbar-bg:      #0a2818;
  --logo-navy:      #1b2b4d;
  --nav-text:       #1f3d2e;
  --orange:         #e07b2a;
  --orange-light:   #f4a261;
  --white:          #ffffff;
  --off-white:      #f5f8f5;
  --light-gray:     #f0f4f0;
  --border:         #dce8dc;
  --text-dark:      #1a2e22;
  --text-medium:    #4a5c4a;
  --text-light:     #6b7c6b;
  --shadow-sm:      0 2px 8px rgba(22,48,32,0.08);
  --shadow-md:      0 4px 20px rgba(22,48,32,0.12);
  --shadow-lg:      0 8px 40px rgba(22,48,32,0.16);
  --radius-sm:      6px;
  --radius-md:      10px;
  --radius-lg:      16px;
  --transition:     all 0.25s ease;
  --font-main:      'Inter', 'Poppins', sans-serif;
  --font-heading:   'Poppins', 'Inter', sans-serif;
}

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

/* ---- UTILITY ---- */
.container-xl {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
.text-center { text-align: center; }
.text-muted { color: var(--text-light); }
.text-danger { color: #dc3545; }
.text-success { color: #198754; }
.text-warning { color: #f59e0b; }
.me-1 { margin-right: 4px; }
.mb-0 { margin-bottom: 0; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
}
.btn-primary-green {
  background: var(--primary-light);
  color: var(--white);
  border-color: var(--primary-light);
}
.btn-primary-green:hover { background: var(--primary-mid); border-color: var(--primary-mid); }
.btn-dark-green {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-dark-green:hover { background: var(--primary-mid); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover { background: var(--white); color: var(--primary); }
.btn-outline-green {
  background: transparent;
  color: var(--primary-light);
  border-color: var(--primary-light);
}
.btn-outline-green:hover { background: var(--primary-light); color: var(--white); }
.btn-outline-dark-green {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-dark-green:hover { background: var(--primary); color: var(--white); }
.btn-sm { padding: 7px 16px; font-size: 0.8rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---- TOP BAR ---- */
.top-bar {
  background: var(--topbar-bg);
  color: rgba(255,255,255,0.88);
  padding: 9px 0;
  font-size: 0.8rem;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.top-bar-left { display: flex; align-items: center; gap: 20px; }
.top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-bar-link {
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-bar-link:hover { color: var(--accent-light); }
.top-bar-link i { font-size: 0.75rem; }
.auth-links { display: flex; align-items: center; gap: 8px; }
.auth-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.74rem; font-weight: 600;
  padding: 5px 14px; border-radius: 20px;
  transition: var(--transition);
}
.auth-link i { font-size: 0.68rem; }
.auth-link.login { color: #fff; border: 1px solid rgba(255,255,255,0.35); }
.auth-link.login:hover { background: rgba(255,255,255,0.12); }
.auth-link.register { color: var(--topbar-bg); background: var(--accent); border: 1px solid var(--accent); }
.auth-link.register:hover { background: var(--accent-light); border-color: var(--accent-light); }
.social-icons { display: flex; gap: 10px; }
.social-icons a {
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
  font-size: 0.7rem;
  transition: var(--transition);
}
.social-icons a:hover { background: var(--accent); color: var(--white); }

/* ---- HEADER / NAVIGATION ---- */
.main-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 14px rgba(13,51,32,0.08);
  border-bottom: 1px solid #eef2ee;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 20px;
}
.navbar-brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-text { display: flex; align-items: center; gap: 14px; }
.logo-icon svg { flex-shrink: 0; }
.logo-text-content { display: flex; flex-direction: column; line-height: 1.05; }
.logo-title { color: var(--logo-navy); font-family: Georgia, 'Times New Roman', serif; font-size: 1.35rem; font-weight: 700; letter-spacing: 0.5px; }
.logo-subtitle { color: var(--logo-navy); font-family: Georgia, 'Times New Roman', serif; font-size: 1.2rem; font-weight: 700; letter-spacing: 0.5px; }
.logo-location { color: var(--text-light); font-size: 0.72rem; font-weight: 600; letter-spacing: 4px; margin-top: 2px; }
.site-logo { height: 80px; width: auto; }

/* Nav list */
.navbar-menu { display: flex; align-items: center; gap: 4px; }
.nav-list { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-list { gap: 0; }
.nav-item { display: flex; align-items: center; }
.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--nav-text);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 28px 8px;
  letter-spacing: 0;
  text-transform: capitalize;
  white-space: nowrap;
}
.nav-link:hover { color: var(--brand-green); }
.nav-link.active { color: var(--brand-green); }
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 12px; right: 12px;
  bottom: 0;
  height: 3px;
  background: var(--brand-green);
  border-radius: 2px 2px 0 0;
}
.nav-arrow { font-size: 0.55rem; transition: var(--transition); }
.nav-item:hover .nav-arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  min-width: 220px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 999;
  border-top: 3px solid var(--accent);
  padding: 6px 0;
}
.nav-item:hover .dropdown-menu, .nav-item:focus-within .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu li a {
  display: block;
  padding: 9px 18px;
  color: var(--text-dark);
  font-size: 0.82rem;
  font-weight: 500;
}
.dropdown-menu li a:hover { background: var(--off-white); color: var(--primary-light); padding-left: 24px; }

/* Search */
.search-btn {
  background: transparent;
  border: none;
  color: var(--nav-text);
  cursor: pointer;
  padding: 8px 12px;
  font-size: 1rem;
  transition: var(--transition);
}
.search-btn:hover { color: var(--brand-green); }
.search-bar-overlay {
  display: none;
  background: var(--primary);
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.search-bar-overlay.open { display: block; }
.search-form { display: flex; gap: 10px; align-items: center; }
.search-input {
  flex: 1;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 0.9rem;
}
.search-input::placeholder { color: rgba(255,255,255,0.5); }
.search-submit, .search-close {
  background: var(--accent);
  border: none;
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.search-close { background: rgba(255,255,255,0.2); }

/* Mobile toggle */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.navbar-toggle span { display: block; width: 24px; height: 2px; background: var(--nav-text); border-radius: 2px; transition: var(--transition); }

/* ---- HERO SECTION ---- */
.hero-section { position: relative; overflow: hidden; width: 100%; padding: 0; margin: 0; }
.hero-slider { position: relative; min-height: 640px; }
.hero-slide {
  min-height: 640px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  display: none;
}
.hero-slide.active { display: flex; align-items: center; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 30, 20, 0.65);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 60px 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.portal-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent-light);
  text-transform: uppercase;
  margin-bottom: 16px;
  background: rgba(82,183,136,0.15);
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(82,183,136,0.3);
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title strong { color: var(--accent-light); }
.hero-subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 28px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Hero Stats Panel */
.hero-stats-panel {
  background: rgba(22,48,32,0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(82,183,136,0.25);
  border-radius: var(--radius-lg);
  padding: 22px;
  min-width: 260px;
  max-width: 300px;
}
.live-stats-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-light);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-stat-item:last-child { border-bottom: none; }
.stat-value { color: var(--white); font-weight: 700; font-size: 1.1rem; }
.stat-label { color: rgba(255,255,255,0.7); font-size: 0.72rem; }
.sdg-mini-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 2px;
  margin-top: 12px;
}
.sdg-mini-item {
  aspect-ratio: 1;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.45rem;
  font-weight: 700;
  color: white;
}
.hero-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); border: none; cursor: pointer; transition: var(--transition); }
.hero-dot.active { background: var(--accent); width: 24px; border-radius: 4px; }
.hero-scroll-indicator { position: absolute; bottom: 20px; right: 40px; z-index: 3; }
.scroll-arrow { color: rgba(255,255,255,0.6); animation: bounce 2s infinite; }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* ---- SECTIONS GENERAL ---- */
section { padding: 60px 0; }
.section-header-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
}
.section-number {
  width: 34px; height: 34px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700;
  flex-shrink: 0;
}
.section-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}
.section-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}
.view-all-link {
  color: var(--primary-light);
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.view-all-link:hover { color: var(--primary); }

/* ---- WELCOME SECTION ---- */
.section-welcome { background: var(--white); }
.welcome-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}
.sub-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 12px;
}
.vision-heading { color: var(--primary-light); }
.sdg-heading { color: var(--text-medium); }
.welcome-about p { color: var(--text-medium); line-height: 1.7; margin-bottom: 12px; }
.tagline-text { font-style: italic; color: var(--text-light); }
.welcome-vision p { color: var(--text-medium); line-height: 1.7; }
.sdg-commitment-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 4px;
  margin-bottom: 12px;
}
.sdg-badge {
  aspect-ratio: 1;
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: white;
}
.sdg-explore-link {
  color: var(--primary-light);
  font-size: 0.82rem;
  font-weight: 600;
  display: flex; align-items: center; gap: 6px;
}
.mission-box {
  display: flex;
  gap: 20px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}
.mission-icon { color: var(--primary-light); font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.mission-content h4 { color: var(--primary); font-weight: 700; margin-bottom: 6px; }
.mission-content p { color: var(--text-medium); font-size: 0.9rem; }

/* ---- ACHIEVEMENTS ---- */
.section-achievements { background: var(--off-white); }
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.achievement-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.achievement-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-bottom-color: var(--accent); }
.achievement-icon { font-size: 2rem; margin-bottom: 10px; }
.achievement-value { font-size: 1.4rem; font-weight: 800; color: var(--primary); display: block; }
.achievement-label { font-size: 0.75rem; color: var(--text-light); font-weight: 500; }

/* ---- PRIORITIES ---- */
.section-priorities { background: var(--white); }
.priorities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.priority-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  transition: var(--transition);
}
.priority-card:hover { box-shadow: var(--shadow-md); border-color: var(--accent); }
.priority-icon {
  width: 44px; height: 44px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-light);
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.priority-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.priority-card p { font-size: 0.78rem; color: var(--text-light); line-height: 1.6; }

/* ---- CORE VALUES ---- */
.section-values { background: var(--off-white); }
.values-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.value-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 9px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition);
}
.value-tag i { color: var(--accent); }
.value-tag:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.value-tag:hover i { color: var(--accent-light); }

/* ---- RESPONSIBILITY ---- */
.section-responsibility { background: var(--primary); }
.responsibility-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 40px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
}
.responsibility-label {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 10px;
}
.responsibility-content h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 14px;
}
.responsibility-content p { color: rgba(255,255,255,0.8); font-size: 0.9rem; line-height: 1.7; }
.responsibility-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 200px;
}
.resp-stat-item { text-align: center; }
.resp-stat-value { display: block; font-size: 2.5rem; font-weight: 900; color: var(--white); line-height: 1; }
.resp-stat-label { color: rgba(255,255,255,0.7); font-size: 0.72rem; }
.resp-stat-divider { height: 1px; background: rgba(255,255,255,0.15); }

/* ---- COUNTERS ---- */
.section-counters { background: var(--primary-mid); padding: 30px 0; }
.counters-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: center;
}
.counter-item { border-right: 1px solid rgba(255,255,255,0.12); }
.counter-item:last-child { border-right: none; }
.counter-value { display: block; font-size: 2.5rem; font-weight: 900; color: var(--white); line-height: 1; }
.counter-label { color: rgba(255,255,255,0.75); font-size: 0.78rem; font-weight: 500; }

/* ---- NEWS ---- */
.section-news { background: var(--white); }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.news-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.news-card-image { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.news-card-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.news-card:hover .news-card-image img { transform: scale(1.05); }
.news-type-badge {
  position: absolute;
  top: 10px; left: 10px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}
.news-type-badge.news { background: var(--primary-mid); color: white; }
.news-type-badge.event { background: var(--orange); color: white; }
.news-card-content { padding: 18px; }
.news-category { font-size: 0.68rem; font-weight: 700; color: var(--primary-light); text-transform: uppercase; letter-spacing: 0.5px; }
.news-title { font-size: 0.9rem; font-weight: 700; margin: 8px 0; line-height: 1.4; }
.news-title a:hover { color: var(--primary-light); }
.news-excerpt { font-size: 0.78rem; color: var(--text-light); line-height: 1.6; margin-bottom: 12px; }
.news-footer { display: flex; justify-content: space-between; align-items: center; }
.news-date { font-size: 0.72rem; color: var(--text-light); }
.news-read-more { font-size: 0.75rem; font-weight: 600; color: var(--primary-light); display: flex; align-items: center; gap: 4px; }
.news-read-more:hover { color: var(--primary); }
.news-cta { text-align: center; }

/* ---- BOTTOM INFO ---- */
.section-bottom-info { background: var(--off-white); }
.bottom-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.info-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.info-icon { font-size: 1.3rem; }
.info-card-header h4 { font-size: 0.9rem; font-weight: 700; color: var(--primary); }
.info-card-body { padding: 18px 20px; font-size: 0.83rem; color: var(--text-medium); }
.info-card-body p { margin-bottom: 8px; }
.reports-list li { margin-bottom: 8px; }
.reports-list a { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: var(--text-dark); }
.reports-list a:hover { color: var(--primary-light); }
.badge-new { background: var(--primary); color: white; font-size: 0.6rem; padding: 1px 6px; border-radius: 3px; }
.evidence-placeholder { text-align: center; padding: 20px; color: var(--text-light); }

/* ---- GET INVOLVED ---- */
.section-get-involved { background: var(--white); }
.get-involved-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 40px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.get-involved-text { display: flex; align-items: flex-start; gap: 16px; }
.section-icon { font-size: 2rem; color: var(--primary-light); }
.get-involved-text h2 { font-size: 1.3rem; font-weight: 700; color: var(--primary); }
.get-involved-text p { color: var(--text-medium); font-size: 0.85rem; margin-top: 4px; }
.get-involved-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---- PAGE HERO ---- */
.page-hero {
  position: relative;
  min-height: 300px;
  background-color: var(--primary);
  background-image: linear-gradient(120deg, #0f261a 0%, #1e4535 45%, #2d6a4f 100%);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding-bottom: 0;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,51,32,0.94) 0%, rgba(13,51,32,0.82) 26%, rgba(13,51,32,0.45) 50%, rgba(13,51,32,0.10) 68%, rgba(13,51,32,0) 82%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 0 30px;
}
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  margin-bottom: 12px;
}
.breadcrumb-nav a { color: rgba(255,255,255,0.7); }
.breadcrumb-nav a:hover { color: var(--accent-light); }
.breadcrumb-sep { color: rgba(255,255,255,0.4); font-size: 0.7rem; }
.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 10px;
}
.page-hero-subtitle { color: rgba(255,255,255,0.85); font-size: 0.9rem; max-width: 480px; line-height: 1.6; }

/* ---- PAGE BODY (3-col) ---- */
.page-body { padding: 40px 0 60px; }
.three-col-layout {
  display: grid;
  grid-template-columns: 260px 1fr 280px;
  gap: 28px;
  align-items: start;
}
.full-width-layout { display: block; }

/* Left Sidebar */
.page-sidebar-left, .page-sidebar-right { position: sticky; top: 80px; }
.sidebar-nav-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
}
.sidebar-nav-title {
  background: var(--primary);
  color: var(--white);
  padding: 14px 18px;
  font-weight: 700;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-page-nav { list-style: none; }
.sidebar-page-nav li { border-bottom: 1px solid var(--border); }
.sidebar-page-nav li:last-child { border-bottom: none; }
.sidebar-page-nav li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 18px;
  font-size: 0.82rem;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
}
.sidebar-page-nav li a:hover { background: var(--off-white); color: var(--primary-light); }
.sidebar-page-nav li a i { color: var(--border); font-size: 0.7rem; }
.sidebar-page-nav li.active a {
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
}
.sidebar-page-nav li.active a i { color: rgba(255,255,255,0.5); }

/* Sidebar extras */
.sidebar-download-box, .sidebar-cta-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  margin-bottom: 16px;
  font-size: 0.8rem;
}
.sidebar-download-title, .sidebar-cta-box strong { font-weight: 700; color: var(--primary); margin-bottom: 6px; display: block; }
.sidebar-cta-box { text-align: center; }
.sidebar-cta-icon { font-size: 1.5rem; color: var(--primary-light); margin-bottom: 8px; }
.edu-cta { background: var(--primary); color: rgba(255,255,255,0.9); }
.edu-cta strong, .edu-cta small { color: inherit; }
.sidebar-cta-box p { margin-bottom: 6px; }
.sidebar-cta-box small { color: var(--text-light); font-size: 0.75rem; display: block; margin-bottom: 12px; }
.edu-cta small { color: rgba(255,255,255,0.7); }

/* Main Content */
.page-main-content {}
.content-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
}
.content-main-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--brand-green);
  margin-bottom: 10px;
}
.content-divider {
  width: 56px; height: 3px;
  background: var(--brand-green);
  border-radius: 2px;
  margin-bottom: 20px;
}
.content-intro p { color: var(--text-medium); line-height: 1.7; margin-bottom: 20px; }
.content-body { color: var(--text-medium); line-height: 1.8; }
.content-body h3, .content-body h4 { color: var(--primary); margin: 20px 0 10px; }
.content-body p { margin-bottom: 14px; }
.content-body ul, .content-body ol { padding-left: 20px; margin-bottom: 14px; }
.content-body li { margin-bottom: 6px; }

/* Stats Cards in content */
.stats-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.stat-card {
  text-align: center;
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 20px 12px;
  border: 1px solid var(--border);
}
.stat-card-icon {
  width: 50px; height: 50px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.2rem;
  color: var(--primary-light);
  box-shadow: var(--shadow-sm);
}
.stat-card-value { display: block; font-size: 1rem; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.stat-card-label { font-size: 0.72rem; color: var(--text-light); }

/* Right Sidebar */
.key-docs-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
}
.key-docs-title {
  background: var(--off-white);
  padding: 14px 18px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.key-docs-list { list-style: none; padding: 8px 0; }
.key-doc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
}
.key-doc-item:last-child { border-bottom: none; }
.doc-icon { color: #dc3545; font-size: 1rem; flex-shrink: 0; }
.doc-info { flex: 1; min-width: 0; }
.doc-name { display: block; font-size: 0.78rem; font-weight: 600; color: var(--text-dark); line-height: 1.3; }
.doc-meta { font-size: 0.68rem; color: var(--text-light); }
.doc-download {
  color: var(--text-light);
  transition: var(--transition);
  padding: 4px;
}
.doc-download:hover { color: var(--primary-light); }
.view-all-docs {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 18px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary-light);
  border-top: 1px solid var(--border);
}
.view-all-docs:hover { background: var(--off-white); }

/* Commitment Box */
.commitment-box {
  background: var(--primary);
  border-radius: var(--radius-md);
  padding: 22px;
  margin-bottom: 20px;
}
.commitment-quote-icon { color: var(--accent-light); font-size: 1.5rem; margin-bottom: 8px; }
.commitment-box h4 { color: var(--white); font-weight: 700; margin-bottom: 8px; }
.commitment-box p { color: rgba(255,255,255,0.85); font-size: 0.82rem; line-height: 1.6; margin-bottom: 8px; }
.commitment-box em { color: var(--accent-light); font-size: 0.8rem; }

/* Impact Sidebar */
.impact-sidebar-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  margin-bottom: 16px;
}
.sidebar-box-title { font-weight: 700; font-size: 0.85rem; color: var(--primary); margin-bottom: 14px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.impact-sidebar-item { display: flex; align-items: center; gap: 10px; padding: 6px 0; border-bottom: 1px solid var(--border); }
.impact-sidebar-item:last-child { border-bottom: none; }
.impact-sidebar-icon { font-size: 0.9rem; flex-shrink: 0; }
.impact-sidebar-value { font-weight: 700; font-size: 0.9rem; color: var(--primary); }
.impact-sidebar-label { font-size: 0.75rem; color: var(--text-light); }

/* GreenMetric sidebar */
.gm-sidebar-box, .gm-questions-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  margin-bottom: 16px;
}
.gm-sidebar-row { display: flex; gap: 12px; justify-content: space-between; margin-bottom: 14px; }
.gm-s-label { display: block; font-size: 0.68rem; color: var(--text-light); }
.gm-s-val { display: block; font-weight: 700; color: var(--primary); }
.gm-score-mini { font-size: 0.78rem; color: var(--text-dark); margin-bottom: 8px; }
.gm-mini-bar { height: 6px; background: var(--border); border-radius: 3px; margin-top: 4px; }
.gm-mini-bar div { height: 100%; background: var(--accent); border-radius: 3px; }
.gm-questions-box h4 { font-weight: 700; font-size: 0.85rem; color: var(--primary); margin-bottom: 6px; }
.gm-questions-box p { font-size: 0.78rem; color: var(--text-medium); margin-bottom: 12px; }

/* Reports summary */
.reports-summary-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  margin-bottom: 16px;
}
.report-stat { display: flex; align-items: center; gap: 8px; padding: 6px 0; border-bottom: 1px solid var(--border); font-size: 0.78rem; }
.report-stat:last-child { border-bottom: none; }
.rs-num { font-weight: 700; color: var(--primary); font-size: 0.9rem; min-width: 30px; }

/* Featured Initiative */
.featured-initiative-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  margin-bottom: 16px;
  text-align: center;
}
.featured-icon { font-size: 1.5rem; color: var(--accent); margin-bottom: 8px; }
.learn-more-link { font-size: 0.78rem; color: var(--primary-light); font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 4px; margin-top: 8px; }

/* GreenMetric performance card */
.greenmetric-perf-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  margin-bottom: 24px;
}
.gm-perf-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 16px; text-align: center; }
.gm-year { font-size: 1.8rem; font-weight: 900; color: var(--primary); display: block; }
.gm-ranking { font-size: 2rem; font-weight: 900; color: var(--primary); display: block; }
.gm-label { font-size: 0.72rem; color: var(--text-light); }
.gm-score-bar { }
.gm-score-info { display: flex; justify-content: space-between; font-size: 0.78rem; margin-bottom: 6px; }
.gm-score { font-weight: 700; color: var(--primary); }
.progress-bar-wrap { height: 8px; background: var(--border); border-radius: 4px; overflow: hidden; }
.progress-bar-fill { height: 100%; background: linear-gradient(to right, var(--primary-light), var(--accent)); border-radius: 4px; }

/* Impact stats in content */
.impact-stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}
.impact-stat { text-align: center; min-width: 100px; }
.impact-icon { font-size: 1.5rem; margin-bottom: 6px; }
.impact-value { display: block; font-size: 1.2rem; font-weight: 800; color: var(--primary); }
.impact-label { font-size: 0.72rem; color: var(--text-light); }

/* ---- CONTACT ---- */
.contact-section { padding: 50px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 280px 1fr 280px;
  gap: 32px;
  margin-bottom: 32px;
}
.contact-info-title, .contact-form-title, .contact-map-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.contact-divider { width: 50px; height: 3px; background: var(--accent); border-radius: 2px; margin-bottom: 20px; }
.contact-info-list { list-style: none; margin-bottom: 20px; }
.contact-info-item { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.contact-info-item:last-child { border-bottom: none; }
.ci-icon { width: 36px; height: 36px; background: var(--off-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary-light); flex-shrink: 0; }
.ci-content strong { display: block; font-size: 0.8rem; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.ci-content span, .ci-content a { font-size: 0.82rem; color: var(--text-medium); display: block; }
.ci-content a:hover { color: var(--primary-light); }
.need-help-box {
  display: flex;
  gap: 14px;
  background: var(--primary);
  border-radius: var(--radius-md);
  padding: 18px;
}
.need-help-icon { font-size: 1.5rem; color: var(--accent-light); flex-shrink: 0; }
.need-help-box strong { color: var(--white); display: block; margin-bottom: 4px; }
.need-help-box p { color: rgba(255,255,255,0.8); font-size: 0.78rem; margin-bottom: 10px; }

/* Contact Form */
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  font-family: var(--font-main);
}
.form-input:focus { outline: none; border-color: var(--primary-light); box-shadow: 0 0 0 3px rgba(45,106,79,0.1); }
.form-input.is-invalid { border-color: #dc3545; }
.field-error { display: block; color: #dc3545; font-size: 0.75rem; margin-top: 4px; }
textarea.form-input { resize: vertical; }
.recaptcha-placeholder {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-bottom: 16px;
  background: var(--off-white);
}
.recaptcha-check { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; }
.recaptcha-logo { text-align: center; }
.recaptcha-icon { font-size: 0.7rem; color: var(--text-light); }
.btn-send { width: 100%; justify-content: center; }

/* Map */
.map-container { height: 220px; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); margin-bottom: 20px; }
.map-container iframe { width: 100%; height: 100%; border: none; }
.map-placeholder { width: 100%; height: 100%; background: #e8f0e8; display: flex; align-items: center; justify-content: center; }
.map-placeholder-inner { text-align: center; }
.map-info-box { background: white; padding: 6px 10px; border-radius: 4px; font-size: 0.75rem; margin-bottom: 20px; box-shadow: var(--shadow-sm); }
.map-info-box a { color: var(--primary-light); }
.map-pin { font-size: 2.5rem; color: #ea4335; margin-bottom: 8px; }
.map-name { font-size: 0.78rem; color: var(--text-medium); }
.connect-box { }
.connect-box h4 { font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.connect-box p { font-size: 0.78rem; color: var(--text-medium); margin-bottom: 12px; }
.connect-social { display: flex; gap: 8px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 0.85rem;
  transition: var(--transition);
}
.social-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.social-btn.facebook { background: #1877f2; }
.social-btn.twitter { background: #1da1f2; }
.social-btn.instagram { background: linear-gradient(45deg, #f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.social-btn.linkedin { background: #0a66c2; }
.social-btn.youtube { background: #ff0000; }
.feedback-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 28px;
}
.feedback-icon { font-size: 2rem; color: var(--accent); flex-shrink: 0; }
.feedback-banner strong { display: block; font-weight: 700; color: var(--primary); }
.feedback-banner p { font-size: 0.82rem; color: var(--text-medium); }

/* ---- FOOTER ---- */
.site-footer { background: var(--primary); color: rgba(255,255,255,0.85); }
.footer-top { padding: 50px 0 30px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 32px;
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo-title { display: block; font-weight: 800; font-size: 0.9rem; color: var(--white); line-height: 1.2; }
.footer-logo-sub { display: block; font-size: 0.72rem; color: var(--accent-light); }
.footer-desc { font-size: 0.8rem; line-height: 1.7; color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.8);
  font-size: 0.75rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); color: var(--white); }
.footer-heading { color: var(--white); font-weight: 700; font-size: 0.9rem; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 0.8rem; display: flex; align-items: center; gap: 6px; transition: var(--transition); }
.footer-links a i { font-size: 0.6rem; color: var(--accent-light); }
.footer-links a:hover { color: var(--accent-light); padding-left: 6px; }
.footer-contact-list { list-style: none; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-list i { color: var(--accent-light); font-size: 0.85rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-list span, .footer-contact-list a { color: rgba(255,255,255,0.75); font-size: 0.78rem; line-height: 1.5; }
.footer-contact-list a:hover { color: var(--accent-light); }

/* SDG Strip */
.sdg-strip { background: rgba(0,0,0,0.2); padding: 14px 0; }
.sdg-grid { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
.sdg-item {
  width: 42px; height: 42px;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700;
  color: white;
  cursor: default;
  transition: var(--transition);
}
.sdg-item:hover { transform: scale(1.1); }
/* Footer Bottom */
.footer-bottom { background: rgba(0,0,0,0.2); padding: 16px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { color: rgba(255,255,255,0.6); font-size: 0.75rem; }

/* ---- BACK TO TOP ---- */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px; height: 44px;
  background: var(--primary-light);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary); transform: translateY(-3px); }

/* ---- ALERTS ---- */
.alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 0.88rem;
}
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-danger  { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.alert-success i, .alert-danger i { flex-shrink: 0; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1280px) {
  .nav-link { padding-left: 8px; padding-right: 8px; font-size: 0.74rem; letter-spacing: 0; }
  .logo-title, .logo-subtitle { font-size: 1.1rem; }
}
@media (max-width: 1200px) {
  .achievements-grid { grid-template-columns: repeat(3, 1fr); }
  .counters-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  .three-col-layout { grid-template-columns: 240px 1fr; }
  .page-sidebar-right { display: none; }
  .welcome-grid { grid-template-columns: 1fr 1fr; }
  .priorities-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-map-col { display: none; }
}

@media (max-width: 768px) {
  .top-bar-right { display: none; }
  .navbar-toggle { display: flex; }
  .navbar-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    padding: 8px;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border);
  }
  .navbar-menu.open { display: flex; }
  .nav-list { flex-direction: column; width: 100%; }
  .nav-link { justify-content: space-between; padding: 12px 14px; border-bottom: 1px solid var(--border); }
  .nav-link.active::after { display: none; }
  .nav-link.active { background: var(--off-white); }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(0,0,0,0.2);
    display: none;
  }
  .has-dropdown.open .dropdown-menu { display: block; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-stats-panel { display: none; }
  .welcome-grid { grid-template-columns: 1fr; }
  .achievements-grid { grid-template-columns: repeat(2, 1fr); }
  .priorities-grid { grid-template-columns: repeat(2, 1fr); }
  .counters-grid { grid-template-columns: repeat(3, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .bottom-info-grid { grid-template-columns: 1fr; }
  .three-col-layout { grid-template-columns: 1fr; }
  .page-sidebar-left { position: static; }
  .responsibility-card { grid-template-columns: 1fr; }
  .get-involved-inner { flex-direction: column; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .sdg-grid { gap: 4px; }
  .sdg-item { width: 34px; height: 34px; font-size: 0.6rem; }
}

@media (max-width: 480px) {
  .container-xl { padding: 0 16px; }
  .hero-slide { min-height: 400px; }
  .hero-title { font-size: 1.8rem; }
  .achievements-grid { grid-template-columns: 1fr 1fr; }
  .priorities-grid { grid-template-columns: 1fr; }
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row-2 { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 6px; text-align: center; }
}

/* ===================================================
   RICH PAGE CONTENT COMPONENTS (match design mockups)
   =================================================== */

.content-section-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-green);
  margin: 28px 0 16px;
  padding-bottom: 8px;
  position: relative;
}
.content-section-title::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 50px; height: 3px;
  background: var(--brand-green);
  border-radius: 2px;
}
.content-section-title:first-child { margin-top: 0; }

.content-callout, .commitment-highlight {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 24px 0;
}
.content-callout i, .commitment-highlight > i {
  font-size: 1.5rem;
  color: var(--primary-light);
  flex-shrink: 0;
  margin-top: 2px;
}
.content-callout strong, .commitment-highlight strong {
  display: block;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 4px;
}
.content-callout p, .commitment-highlight p {
  color: var(--text-medium);
  font-size: 0.88rem;
  margin: 0;
}
.commitment-highlight.gm-commit { flex-wrap: wrap; align-items: center; }
.commitment-highlight.gm-commit .btn { margin-left: auto; }

/* ---- ORG CHART ---- */
.org-chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  margin-bottom: 12px;
}
.org-node {
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.org-node i { margin-right: 6px; }
.org-top   { background: var(--primary); }
.org-green { background: #14532d; }
.org-teal  { background: #2d6a4f; }
.org-lime  { background: #1a8a50; }
.org-blue  { background: #14532d; }
.org-navy  { background: var(--primary); }
.org-connector { width: 2px; height: 26px; background: var(--border); }
.org-row { display: grid; gap: 16px; width: 100%; max-width: 640px; position: relative; }
.org-row-3 { grid-template-columns: repeat(3, 1fr); }
.org-row::before {
  content: "";
  position: absolute;
  top: -13px; left: 16%; right: 16%;
  height: 2px;
  background: var(--border);
}

/* ---- KEY RESPONSIBILITIES ---- */
.resp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 8px; }
.resp-grid-1 { grid-template-columns: 1fr; }
.resp-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--text-medium);
  line-height: 1.5;
}
.resp-item i { color: var(--accent); margin-top: 3px; flex-shrink: 0; }

/* ---- INITIATIVE / FOCUS CARDS ---- */
.content-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 8px; }
.content-card-grid-4 { grid-template-columns: repeat(4, 1fr); }
.icard {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.icard { overflow: visible; }
.icard:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--accent); }
.icard-visual {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--brand-green);
  position: relative;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  background-clip: padding-box;
}
/* circular white icon badge overlapping the bottom-left of the photo */
.icard-visual i {
  position: absolute;
  bottom: -22px;
  left: 18px;
  width: 48px; height: 48px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-green);
  font-size: 1.15rem;
  z-index: 4;
  box-shadow: 0 4px 12px rgba(13,51,32,0.18);
}
.icard-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; border-radius: var(--radius-md) var(--radius-md) 0 0; }
.visual-energy    { background: linear-gradient(135deg, #1a8a50, #0d3320); }
.visual-water     { background: linear-gradient(135deg, #2d6a4f, #0d3320); }
.visual-waste     { background: linear-gradient(135deg, #14532d, #0d3320); }
.visual-transport { background: linear-gradient(135deg, #1a8a50, #14532d); }
.visual-bio       { background: linear-gradient(135deg, #2d6a4f, #14532d); }
.visual-building  { background: linear-gradient(135deg, #14532d, #0d3320); }
.icard-body { padding: 32px 18px 18px; flex: 1; display: flex; flex-direction: column; }
.icard-body h4 { font-size: 0.98rem; font-weight: 700; color: var(--brand-green); margin-bottom: 6px; }
.icard-body p { font-size: 0.8rem; color: var(--text-light); line-height: 1.55; margin-bottom: 12px; flex: 1; }
.icard-link { font-size: 0.8rem; font-weight: 600; color: var(--brand-green); display: inline-flex; align-items: center; gap: 5px; }
.icard-link:hover { color: var(--primary); gap: 9px; }

/* ---- APPROACH STAT CARDS ---- */
.approach-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 8px; }
.approach-card {
  text-align: center;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 14px;
}
.approach-icon {
  width: 54px; height: 54px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--primary-light);
  box-shadow: var(--shadow-sm);
}
.approach-value { display: block; font-size: 1.6rem; font-weight: 900; color: var(--primary); line-height: 1; margin-bottom: 6px; }
.approach-title { display: block; font-size: 0.82rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.approach-desc  { display: block; font-size: 0.72rem; color: var(--text-light); line-height: 1.45; }

/* ---- REPORT CARDS ---- */
.report-card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-bottom: 8px; }
.rcard {
  display: flex;
  gap: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  background: var(--white);
  transition: var(--transition);
}
.rcard:hover { box-shadow: var(--shadow-md); border-color: var(--accent); }
.rcard-cover {
  width: 80px; height: 104px;
  flex-shrink: 0;
  border-radius: 6px;
  background: linear-gradient(150deg, #1e4535, #2d6a4f);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 1.6rem;
}
.rcard-cover span { font-size: 0.7rem; font-weight: 700; }
.rcard-body { flex: 1; display: flex; flex-direction: column; }
.rcard-body h4 { font-size: 0.9rem; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.rcard-body p { font-size: 0.78rem; color: var(--text-light); line-height: 1.5; margin-bottom: 10px; flex: 1; }
.rcard-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; }

/* ---- CRITERIA CARDS ---- */
.criteria-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 8px; }
.crit-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  background: var(--white);
  transition: var(--transition);
}
.crit-card:hover { box-shadow: var(--shadow-md); border-color: var(--accent); }
.crit-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-light);
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.crit-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.crit-card p { font-size: 0.78rem; color: var(--text-light); line-height: 1.5; margin-bottom: 10px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .content-card-grid, .content-card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .criteria-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .org-row-3 { grid-template-columns: 1fr; }
  .org-row::before { display: none; }
  .resp-grid { grid-template-columns: 1fr; }
  .report-card-grid { grid-template-columns: 1fr; }
  .commitment-highlight.gm-commit .btn { margin-left: 0; width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .content-card-grid, .content-card-grid-4, .approach-grid, .criteria-grid { grid-template-columns: 1fr; }
}

/* ===== SDG FLIP-CARD COMMITMENT GRID (home 3rd column) ===== */
.sdg-col-card { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 18px; }
.sdg-col-title { font-size: 0.95rem; font-weight: 700; color: var(--primary); margin-bottom: 14px; }
.sdg-mini-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-bottom: 6px; }
.sdg-mini-row2 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; }
.sdg-ctile { display: block; aspect-ratio: 1; perspective: 600px; cursor: pointer; }
.sdg-flip-inner { position: relative; width: 100%; height: 100%; transition: transform 0.5s; transform-style: preserve-3d; border-radius: 5px; }
.sdg-ctile:hover .sdg-flip-inner { transform: rotateY(180deg); }
.sdg-flip-front, .sdg-flip-back {
  position: absolute; inset: 0; backface-visibility: hidden; -webkit-backface-visibility: hidden;
  border-radius: 5px; overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.sdg-flip-front { background: #fff; }
.sdg-flip-front img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sdg-flip-back { transform: rotateY(180deg); flex-direction: column; color: #fff; text-align: center; padding: 2px; }
.fb-num { font-size: 1rem; font-weight: 800; line-height: 1; }
.fb-lbl { font-size: 0.4rem; font-weight: 600; line-height: 1.1; margin-top: 2px; }
.sdg-goals-box { aspect-ratio: 1; border-radius: 5px; background: var(--primary); display: flex; align-items: center; justify-content: center; text-align: center; }
.sdg-g-title { color: #fff; font-size: 0.46rem; font-weight: 700; line-height: 1.15; }
.sdg-col-card .sdg-explore-link { margin-top: 14px; }
@media (max-width: 480px) {
  .fb-lbl { font-size: 0.36rem; }
  .sdg-g-title { font-size: 0.42rem; }
}

/* Hero stats panel — SDG official icon grid (replaces numbered boxes) */
.hero-sdg-label { font-size: 0.64rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent-light); margin: 16px 0 10px; }
.hero-sdg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.hero-sdg-tile { aspect-ratio: 1; border-radius: 6px; overflow: hidden; display: flex; align-items: center; justify-content: center; position: relative; box-shadow: 0 1px 5px rgba(0,0,0,0.22); }
.hero-sdg-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-sdg-tile:hover { transform: scale(1.1); transition: transform 0.2s ease; z-index: 2; }

/* Footer logo panel (uploaded GAUS logo on dark footer) */
.footer-logo-panel { display: inline-block; background: #fff; border-radius: 10px; padding: 12px 16px; margin-bottom: 4px; }
.footer-logo-panel img { height: 64px; width: auto; display: block; }
