/* ===== CSS VARIABLES ===== */
:root {
  --red: #E53032;
  --gold: #F99E26;
  --navy: #2F2C69;
  --dark: #3C3C3B;
  --light: #f9fafb;
  --white: #ffffff;
  --gray: #4b5563;
  --border: #e5e7eb;
  --shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
  --shadow-hover: 0 20px 30px -12px rgba(0,0,0,0.1);
  --transition: 0.2s ease;
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: var(--light);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

/* ===== HEADER ===== */
header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.8rem 20px;
}

.logos {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logos img {
  height: 50px;
  width: auto;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--dark);
  margin: 3px 0;
  border-radius: 3px;
}

nav ul {
  display: flex;
  gap: 1.8rem;
  list-style: none;
}

nav a {
  font-weight: 600;
  color: var(--gray);
}

nav a:hover,
nav a.active {
  color: var(--red);
}

/* ===== HERO SECTION ===== */
.hero-bg {
  position: relative;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

.hero-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(47, 44, 105, 0.45);
  z-index: 1;
}

.hero-bg .container {
  position: relative;
  z-index: 2;
  max-width: 700px;
  text-align: left;
  padding: 80px 0;
}

.hero-bg h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: white;
}

.hero-bg .lead {
  font-size: clamp(1rem, 4vw, 1.2rem);
  font-weight: 500;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.95);
}

.hero-bg p {
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.9);
  font-size: clamp(0.9rem, 3.5vw, 1rem);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  background: var(--red);
  color: white;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-align: center;
  font-size: 0.95rem;
}

.btn:hover {
  background: #c4282a;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn-outline:hover {
  background: white;
  color: var(--navy);
  transform: translateY(-2px);
}

/* ===== GENERAL SECTION STYLES ===== */
section {
  padding: 80px 0;
}

h2 span {
  background: linear-gradient(120deg, var(--red), var(--gold));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  display: inline-block;
}

h2 {
  font-size: clamp(1.8rem, 5vw, 2.2rem);
  margin-bottom: 1rem;
  text-align: center;
}

.section-sub {
  text-align: center;
  font-size: clamp(0.95rem, 4vw, 1.1rem);
  color: var(--gray);
  margin-bottom: 1rem;
}

/* ===== CARDS & GRIDS ===== */
.pillars-grid,
.approach-grid,
.values-grid,
.work-steps,
.highlights-grid,
.timeline-grid,
.communication-grid,
.themes-grid,
.process-steps,
.principles-grid,
.structure-grid,
.principles-gov-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.pillar-card,
.approach-item,
.value-card,
.work-step,
.highlight-card,
.timeline-item,
.comm-card,
.theme-card,
.process-step,
.principle-card,
.structure-card,
.principle-gov-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
  text-align: center;
}

.pillar-card:hover,
.value-card:hover,
.work-step:hover,
.highlight-card:hover,
.theme-card:hover,
.process-step:hover,
.principle-card:hover,
.structure-card:hover,
.principle-gov-card:hover,
.timeline-item:hover,
.comm-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.pillar-icon,
.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.value-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  background: var(--red);
  color: white;
  margin-bottom: 1rem;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 1rem;
}

/* ===== CHAIRMAN SECTION (who-we-are) ===== */
.chairman-card {
  display: flex;
  gap: 2rem;
  align-items: center;
  background: var(--light);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.chairman-image {
  flex: 1;
}

.chairman-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.chairman-info {
  flex: 2;
}

.chairman-info h2 {
  text-align: left;
  margin-bottom: 0.5rem;
  font-size: clamp(1.5rem, 4vw, 1.8rem);
}

.chairman-info h3 {
  color: var(--red);
  margin-bottom: 1rem;
  font-size: clamp(1.2rem, 4vw, 1.5rem);
}

/* ===== VIDEO EMBED ===== */
.video-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.video-wrapper {
  margin-top: 1.5rem;
}

iframe {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 16 / 9;
}

.timeline-year {
  display: inline-block;
  background: var(--red);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* ===== CONTACT PAGE ===== */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-box {
  background: var(--light);
  padding: 2rem;
  border-radius: 20px;
}

.info-item {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--red);
  width: 30px;
}

.contact-form-box {
  background: var(--light);
  padding: 2rem;
  border-radius: 20px;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
}

.btn-submit {
  width: 100%;
  margin-top: 1rem;
}

/* ===== CTA SECTIONS (bottom of pages) ===== */
.wwa-cta,
.updates-cta,
.projects-cta,
.governance-cta {
  background: linear-gradient(135deg, var(--navy), #1f1d4a);
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.wwa-cta h2,
.updates-cta h2,
.projects-cta h2,
.governance-cta h2 {
  color: white;
  margin-bottom: 1rem;
  font-size: clamp(1.5rem, 5vw, 2rem);
}

.wwa-cta p,
.updates-cta p,
.projects-cta p,
.governance-cta p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  font-size: clamp(0.9rem, 4vw, 1rem);
}

.wwa-cta .btn,
.updates-cta .btn,
.projects-cta .btn,
.governance-cta .btn {
  background: var(--gold);
  color: var(--navy);
}

.wwa-cta .btn:hover,
.updates-cta .btn:hover,
.projects-cta .btn:hover,
.governance-cta .btn:hover {
  background: #e58e1a;
}

/* ===== ENHANCED CONTACT SECTION (homepage) ===== */
.contact-enhanced {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #eef2f6 100%);
}

.contact-enhanced-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.contact-details {
  background: white;
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.contact-details h3 {
  font-size: clamp(1.5rem, 5vw, 1.8rem);
  margin-bottom: 1.5rem;
  color: var(--navy);
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  font-size: clamp(0.9rem, 4vw, 1rem);
  color: var(--dark);
}

.contact-detail-item i {
  width: 30px;
  font-size: 1.3rem;
  color: var(--red);
}

.contact-detail-item a {
  color: var(--dark);
  text-decoration: none;
  transition: var(--transition);
}

.contact-detail-item a:hover {
  color: var(--red);
}

.contact-detail-item.italic {
  margin-top: 1.5rem;
  font-style: italic;
  border-top: 1px solid var(--border);
  padding-top: 1.2rem;
}

.contact-cta-box {
  background: white;
  padding: 2.5rem;
  border-radius: 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.contact-cta-box h2 {
  font-size: clamp(1.5rem, 5vw, 1.8rem);
  margin-bottom: 1rem;
  color: var(--navy);
}

.contact-cta-box p {
  margin-bottom: 1.8rem;
  color: var(--gray);
  font-size: clamp(0.9rem, 4vw, 1rem);
}

.contact-cta-box .btn-primary {
  background: var(--red);
  color: white;
}

.contact-cta-box .btn-primary:hover {
  background: #c4282a;
  transform: translateY(-2px);
}

/* ===== COLOURED BOTTOM SHADOWS (index only) ===== */
.index-section {
  position: relative;
  margin-bottom: 50px;
}

.index-section:nth-of-type(1) {
  box-shadow: 0 15px 20px -10px rgba(229,48,50,0.25);
}
.index-section:nth-of-type(2) {
  box-shadow: 0 15px 20px -10px rgba(249,158,38,0.25);
}
.index-section:nth-of-type(3) {
  box-shadow: 0 15px 20px -10px rgba(47,44,105,0.25);
}
.index-section:last-of-type {
  margin-bottom: 0;
}

/* ===== FOOTER ===== */
footer {
  background: #111827;
  color: #9ca3af;
  padding: 60px 0 20px;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  margin-top: 0.5rem;
  color: #9ca3af;
  font-size: clamp(0.85rem, 4vw, 0.95rem);
}

.footer-links h4,
.footer-contact h4 {
  color: #f3f4f6;
  margin-bottom: 1rem;
  font-size: clamp(1rem, 4vw, 1.1rem);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #9ca3af;
  font-size: clamp(0.85rem, 4vw, 0.95rem);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact p {
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.85rem, 4vw, 0.95rem);
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #1f2937;
  font-size: clamp(0.8rem, 3.5vw, 0.9rem);
  color: #6b7280;
}

/* ===== RESPONSIVE (MOBILE) ===== */
@media (max-width: 992px) {
  .menu-toggle {
    display: flex;
  }
  nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 80%;
    height: calc(100% - 70px);
    background: white;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    transition: 0.3s;
    padding: 2rem;
    z-index: 99;
    overflow-y: auto;
  }
  nav.active {
    left: 0;
  }
  nav ul {
    flex-direction: column;
    gap: 1rem;
  }
  .hero-bg .container {
    text-align: center;
    max-width: 100%;
    padding: 60px 20px;
  }
  .hero-buttons {
    justify-content: center;
  }
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .chairman-card {
    flex-direction: column;
    text-align: center;
  }
  .chairman-info h2 {
    text-align: center;
  }
  .contact-enhanced-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-enhanced {
    padding: 60px 0;
  }
  section {
    padding: 60px 0;
  }
  .hero-bg {
    min-height: 500px;
  }
  .hero-bg h1 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .pillars-grid,
  .mv-grid,
  .values-grid,
  .work-steps,
  .highlights-grid,
  .timeline-grid,
  .communication-grid,
  .themes-grid,
  .process-steps,
  .principles-grid,
  .structure-grid,
  .principles-gov-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .card,
  .pillar-card,
  .value-card,
  .work-step,
  .highlight-card,
  .timeline-item,
  .comm-card,
  .theme-card,
  .process-step,
  .principle-card,
  .structure-card,
  .principle-gov-card {
    padding: 1.5rem;
  }
  .contact-details,
  .contact-cta-box {
    padding: 1.8rem;
  }
  .contact-detail-item {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .contact-detail-item i {
    width: 25px;
  }
}

@media (max-width: 480px) {
  .logos img {
    height: 40px;
  }
  .header-content {
    padding: 0.5rem 20px;
  }
  .hero-bg {
    min-height: 450px;
  }
  .hero-bg .container {
    padding: 40px 20px;
  }
  .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
  .hero-buttons {
    gap: 0.8rem;
  }
  .index-section {
    margin-bottom: 30px;
  }
  .index-section:nth-of-type(1) {
    box-shadow: 0 12px 16px -8px rgba(229,48,50,0.25);
  }
  .index-section:nth-of-type(2) {
    box-shadow: 0 12px 16px -8px rgba(249,158,38,0.25);
  }
  .index-section:nth-of-type(3) {
    box-shadow: 0 12px 16px -8px rgba(47,44,105,0.25);
  }
}

/* ===== ENHANCED CARD STYLES FOR WHO-WE-ARE PAGE ===== */

/* Intro section – turned into a card */
.wwa-intro {
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow);
    margin: 40px auto;
    padding: 40px 20px;
    max-width: 1000px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.wwa-intro:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

/* Mission & Vision cards */
.mv-card {
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 2rem;
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mv-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.mv-card h2 {
    text-align: left;
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
}

.mv-card p {
    flex: 1;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark);
}

/* Ensure the grid for mission/vision is centered and cards have equal height */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Remove extra margin/padding on intro container */
.wwa-intro .container {
    padding: 0;
    max-width: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .wwa-intro {
        margin: 30px 20px;
        padding: 30px 20px;
    }
    .mv-card {
        padding: 1.5rem;
    }
    .mv-card h2 {
        font-size: 1.4rem;
    }
}
/* Optional: background for the whole page to make cards pop */
body {
    background: linear-gradient(180deg, var(--light) 0%, #ffffff 100%);
}


/* ===== LOGO SIZE & SPACING ===== */
.logos {
    gap: 8px; /* closer together */
}

.logos img {
    height: 77px; /* 55px * 1.4 ≈ 77px */
    width: auto;
}

/* Adjust header padding to accommodate larger logos */
.header-content {
    padding: 0.5rem 20px; /* slightly reduced vertical padding */
}

/* On tablets, slightly reduce logo size */
@media (max-width: 992px) {
    .logos img {
        height: 66px; /* ~85% of 77px */
    }
}

/* On mobile, further reduce to avoid crowding */
@media (max-width: 768px) {
    .logos img {
        height: 55px; /* back to original size */
    }
    .logos {
        gap: 6px;
    }
}