/* --- Oxygen element reset (added by converter) --- */
.oxy-text-link{color:inherit}
.oxy-html-code{display:contents}

:root {
  --blue: #003DA5;
  --blue-dark: #002D7A;
  --blue-light: #E8F0FA;
  --green: #8FC93A;
  --green-dark: #72A32E;
  --green-light: #F2F8E8;
  --white: #FFFFFF;
  --grey-light: #F5F7F8;
  --grey: #E8ECF0;
  --charcoal: #333333;
  --text: #4A4A4A;
  --text-light: #767676;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-card: 16px;
  --radius-sm: 8px;
  --radius-pill: 9999px;
  --shadow-card: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.1);
  --ease-smooth: cubic-bezier(0.32,0.72,0,1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
.cv1 { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section {
  padding: 96px 0;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-smooth), transform 0.9s var(--ease-smooth);
  scroll-margin-top: 72px;
}
.hero { scroll-margin-top: 72px; }
.section.visible { opacity: 1; transform: translateY(0); }
.section-alt { background: var(--grey-light); }
.card-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-smooth), transform 0.6s var(--ease-smooth);
}
.card-reveal.visible { opacity: 1; transform: translateY(0); }

.cv2, .cv3, .cv4, .cv5 { font-family: var(--font-heading); line-height: 1.25; color: var(--charcoal); }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--blue);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}
.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  max-width: 600px;
}
.section-desc {
  font-size: 17px;
  color: var(--text);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth);
  background: none;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(0,61,165,0.25);
}
.btn-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 6px 24px rgba(0,61,165,0.35);
}
.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  font-size: 14px;
  transition: transform 0.3s var(--ease-smooth);
}
.btn-primary:hover .btn-icon { transform: translateX(2px) translateY(-1px); }
.btn-outline {
  border: 1.5px solid var(--blue);
  color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}

.card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 2px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.4s var(--ease-smooth), transform 0.4s var(--ease-smooth);
}
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.card-inner {
  background: var(--white);
  border-radius: calc(var(--radius-card) - 2px);
  padding: 32px;
  height: 100%;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--grey);
  transition: box-shadow 0.3s var(--ease-smooth);
}
.site-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.06); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: none;        /* full-width header (override .container's 1200px cap) */
  padding-left: 40px;
  padding-right: 40px;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--blue);
}
.header-logo img { height: 40px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--blue); background: var(--blue-light); }
/* Login link (rendered by the Header Code Block shortcode, outside .nav-links) */
.khalifah-login {
  margin-left: 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
.khalifah-login:hover { color: var(--blue); }
/* Header Code Block wrapper (holds switcher + Login) — keep them on one row */
.header-inner .oxy-php-code { display: flex; align-items: center; }
.nav-links a.active {
  color: var(--blue);
  font-weight: 600;
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--charcoal);
  cursor: pointer;
  padding: 8px;
}
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .header-inner { padding-left: 24px; padding-right: 24px; }
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 24px 32px;
    gap: 4px;
    border-bottom: 1px solid var(--grey);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease-smooth), opacity 0.4s var(--ease-smooth);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a { width: 100%; padding: 12px 16px; }
  .nav-links a.active::after { display: none; }
  /* switcher + Login row tucked inside the mobile drawer */
  .nav-links .oxy-php-code {
    width: 100%;
    justify-content: flex-start;
    gap: 14px;
    padding: 14px 16px 4px;
    margin-top: 8px;
    border-top: 1px solid var(--grey);
  }
  .nav-links .oxy-php-code .khalifah-lang-switch { margin-left: 0; }
  .nav-links .oxy-php-code .khalifah-login { width: auto; margin-left: 0; }
  /* switcher sits at the drawer's left edge, so open its panel leftward */
  .nav-links .oxy-php-code .kls-panel { left: 0; right: auto; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding: 96px 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cv6 {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,61,165,0.88) 0%, rgba(0,61,165,0.72) 50%, rgba(0,0,0,0.5) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 24px 32px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--green);
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-desc {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  max-width: 680px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-actions .btn-outline { border-color: rgba(255,255,255,0.5); color: var(--white); }
.hero-actions .btn-outline:hover { background: var(--white); color: var(--blue); border-color: var(--white); }

/* ===== About ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-image {
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
}
.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-card);
  border: 1px solid rgba(255,255,255,0.1);
  pointer-events: none;
}
.about-content .section-desc { margin-bottom: 0; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--grey);
}
.stat-value { font-family: var(--font-heading); font-size: 28px; font-weight: 700; color: var(--blue); }
.stat-label { font-size: 13px; color: var(--text-light); margin-top: 4px; }

/* ===== Values ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card .card-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 24px;
}
.cv7 { font-size: 18px; font-weight: 600; }
.cv8 { font-size: 14px; color: var(--text); line-height: 1.6; }

/* ===== Why Choose ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.why-card .card-inner { display: flex; flex-direction: column; gap: 12px; }
.cv9 { font-size: 18px; font-weight: 600; }
.cv10 { font-size: 14px; color: var(--text); line-height: 1.6; }
.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
}
.why-icon.green { background: var(--blue); }
.why-icon.gold { background: var(--green); }

/* ===== Ecosystem ===== */
.eco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.eco-card .card-inner { display: flex; flex-direction: column; gap: 10px; }
.cv11 { font-size: 16px; font-weight: 600; }
.cv12 { font-size: 13px; color: var(--text); line-height: 1.6; }
.eco-commit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* ===== Membership ===== */
.membership-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.membership-benefits { display: flex; flex-direction: column; gap: 16px; }
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius-sm);
  transition: background 0.3s;
}
.benefit-item:hover { background: var(--blue-light); }
.benefit-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.cv13 { font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.cv14 { font-size: 13px; color: var(--text); }

.journey-steps { display: flex; flex-direction: column; gap: 0; }
.journey-step {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  position: relative;
}
.journey-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 48px;
  bottom: 0;
  width: 2px;
  background: var(--grey);
}
.step-number {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-heading);
  position: relative;
  z-index: 1;
}
.cv15 { font-size: 15px; font-weight: 600; }
.cv16 { font-size: 13px; color: var(--text); margin-top: 2px; }

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card .card-inner { display: flex; flex-direction: column; gap: 16px; }
.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  flex: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
}
.testimonial-name { font-size: 14px; font-weight: 600; }
.testimonial-role { font-size: 12px; color: var(--text-light); }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start; }
.contact-image {
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-top: 16px;
}
.contact-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.form-group { margin-bottom: 20px; }
.cv17 {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  border: 1.5px solid var(--grey);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  background: var(--white);
  color: var(--charcoal);
}
.form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,61,165,0.1);
}
.cv18 { resize: vertical; min-height: 120px; }
.form-submit {
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.form-submit:hover { background: var(--blue-dark); }
.form-submit:active { transform: scale(0.97); }

.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.cv19 { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.cv20, .contact-item-text a {
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
  display: block;
}
.contact-item-text a:hover { color: var(--blue); }

.social-links {
  display: flex;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--grey);
}
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grey-light);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.social-link:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== About (Detailed) ===== */
.about-purpose-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.about-text-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin: 40px 0; }

.about-values-card .card-inner { display: flex; flex-direction: column; gap: 12px; }
.about-values-table { width: 100%; border-collapse: collapse; }

/* ===== Final CTA ===== */
.cta-final {
  position: relative;
  background: var(--blue);
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 70%);
}
.cta-final .container { position: relative; z-index: 1; text-align: center; }
.cv21 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.cv22 {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ===== Leadership ===== */
.leadership-header { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.leadership-sub { font-size: 15px; color: var(--text); line-height: 1.7; margin-top: 12px; }
.leadership-principles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 48px; }
.lp-card .card-inner { display: flex; flex-direction: column; gap: 10px; }
.cv23 { font-size: 16px; font-weight: 600; }
.cv24 { font-size: 13px; color: var(--text); line-height: 1.6; }
.leadership-philosophy {
  background: var(--blue-light);
  border-radius: var(--radius-card);
  padding: 40px;
  text-align: center;
  margin-bottom: 48px;
}
.cv25 { font-size: 20px; font-weight: 600; color: var(--blue); margin-bottom: 12px; }
.cv26 { font-size: 15px; color: var(--text); line-height: 1.7; max-width: 600px; margin: 0 auto; }
.leadership-placeholder {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.leadership-placeholder .card-inner { text-align: center; padding: 48px 32px; }
.leadership-placeholder .card-inner i { font-size: 36px; color: var(--blue); margin-bottom: 12px; }
.cv27 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.cv28 { font-size: 13px; color: var(--text-light); }

/* ===== Corporate Governance ===== */
.gov-intro { font-size: 15px; color: var(--text); line-height: 1.7; max-width: 680px; margin-bottom: 40px; }
.gov-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gov-card .card-inner { display: flex; flex-direction: column; gap: 12px; }
.cv29 { font-size: 16px; font-weight: 600; color: var(--blue); }
.cv30 { font-size: 13px; color: var(--text); line-height: 1.6; }
.gov-commit { margin-top: 40px; padding-top: 40px; border-top: 1px solid var(--grey); text-align: center; }
.cv31 { font-size: 15px; color: var(--text); line-height: 1.7; max-width: 680px; margin: 0 auto; }

/* ===== Gallery ===== */
.gallery-intro { font-size: 15px; color: var(--text); line-height: 1.7; max-width: 680px; margin-bottom: 40px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-card .card-inner { padding: 0; overflow: hidden; }
.gallery-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.gallery-card-body { padding: 20px; }
.cv32 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.cv33 { font-size: 12px; color: var(--text-light); line-height: 1.6; }
.gallery-footer { text-align: center; margin-top: 40px; }
.cv34 { font-size: 14px; color: var(--text); line-height: 1.7; max-width: 600px; margin: 0 auto; }

/* ===== Footer ===== */
.site-footer {
  background: var(--white);
  color: var(--text);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--grey);
}
.footer-brand { font-family: var(--font-heading); font-size: 18px; font-weight: 600; color: var(--blue); margin-bottom: 12px; }
.footer-brand img { height: 44px; width: auto; margin-bottom: 8px; }
.footer-desc { font-size: 14px; color: var(--text-light); line-height: 1.7; max-width: 28em; }
.cv35 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 16px;
}
.cv36 { display: flex; flex-direction: column; gap: 10px; }
.cv37 {
  font-size: 14px;
  color: var(--text);
  transition: color 0.3s;
}
.cv38:hover { color: var(--blue); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  font-size: 13px;
  color: var(--text-light);
}
.footer .social-links { margin-top: 12px; padding: 0; border: none; gap: 8px; }
.footer .social-link {
  width: 36px;
  height: 36px;
  background: var(--grey);
  color: var(--text-light);
}
.footer .social-link:hover {
  background: var(--green);
  color: var(--white);
}

/* ===== Section banner photos (injected per section) ===== */
.section-photo {
  margin: 8px 0 48px;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.section-photo img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .section-photo img { height: 200px; }
}

/* ===== Back to Top ===== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 99;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 16px rgba(0,61,165,0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s var(--ease-smooth), visibility 0.3s var(--ease-smooth), transform 0.3s var(--ease-smooth), background 0.3s;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,61,165,0.4);
}
.back-to-top:active { transform: scale(0.95); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { order: -1; }
  .about-image img { height: 300px; }
  .membership-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .eco-grid { grid-template-columns: 1fr 1fr; }
  .eco-commit-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .gov-grid { grid-template-columns: 1fr; }
  .about-purpose-grid { grid-template-columns: 1fr; }
  .about-text-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .leadership-principles { grid-template-columns: 1fr; }
  .leadership-placeholder { grid-template-columns: 1fr; }
  .hero-title { font-size: 36px; }
  .hero-desc { font-size: 16px; }
  .stat-value { font-size: 22px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; gap: 20px; }
  .eco-grid { grid-template-columns: 1fr; }
  .eco-commit-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 24px 20px 32px; }
  .hero-title { font-size: 28px; }
  .hero-desc { font-size: 15px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .section { padding: 48px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== Oxygen builder edit-mode fix =====
   Scroll-reveal starts sections/cards at opacity:0 and oxy-global.js adds `.visible`
   on scroll. That JS does not run in the Oxygen builder canvas, so every `.section`
   stays invisible there and only the hero (no reveal) shows. The `.builder-element`
   class is added ONLY inside the Oxygen/Breakdance editor, so this override reveals
   everything while editing and is completely inert on the live site. */
.builder-element.section,
.builder-element .section,
.builder-element.card-reveal,
.builder-element .card-reveal {
  opacity: 1 !important;
  transform: none !important;
}
