/* ===================== CSS CUSTOM PROPERTIES ===================== */
:root {
  --primary: #0A1E3D;
  --gold: #C8A84E;
  --asean-blue: #2E6DA4;
  --off-white: #F8F6F2;
  --pearl: #EDEAE4;
  --text: #1A1A1A;
  --text-secondary: #5A5A5A;
  --white: #FFFFFF;
  --bg: var(--off-white);
  --card-bg: var(--white);
  --card-shadow: 0 2px 12px rgba(0,0,0,0.06);
  --header-bg: rgba(255,255,255,0.97);
  --header-border: rgba(10,30,61,0.08);
  --section-dark-bg: var(--primary);
  --section-dark-text: var(--white);
  --section-pearl-bg: var(--pearl);
  --input-bg: var(--white);
  --input-border: #D0CCC4;
  --footer-bg: var(--primary);
  --footer-text: rgba(255,255,255,0.75);
  --timeline-line: var(--gold);
  --overlay-bg: rgba(0,0,0,0.5);
}

[data-theme="dark"] {
  --bg: #111827;
  --card-bg: #1F2937;
  --card-shadow: 0 2px 12px rgba(0,0,0,0.3);
  --text: #E5E7EB;
  --text-secondary: #9CA3AF;
  --off-white: #111827;
  --pearl: #1F2937;
  --white: #1F2937;
  --header-bg: rgba(17,24,39,0.97);
  --header-border: rgba(255,255,255,0.08);
  --section-pearl-bg: #1a2332;
  --input-bg: #1F2937;
  --input-border: #374151;
  --overlay-bg: rgba(0,0,0,0.7);
}

/* ===================== RESET & BASE ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Source Sans 3', 'Source Sans Pro', system-ui, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.25; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

/* ===================== UTILITIES ===================== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 100px 0; }
.section-title {
  font-size: 2.25rem;
  color: var(--text);
  margin-bottom: 16px;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin-top: 16px;
}
.section-title-center { text-align: center; }
.section-title-center::after { margin-left: auto; margin-right: auto; }
.section-intro {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 720px;
  margin-bottom: 48px;
}
.section-intro-center { text-align: center; margin-left: auto; margin-right: auto; }
.text-gold { color: var(--gold); }
.bg-dark { background: var(--section-dark-bg); color: var(--section-dark-text); }
.bg-dark .section-title { color: var(--white); }
.bg-dark .section-intro { color: rgba(255,255,255,0.7); }
.bg-pearl { background: var(--section-pearl-bg); }
.bg-off-white { background: var(--bg); }

/* Animations */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.slide-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.slide-left.visible { opacity: 1; transform: translateX(0); }
.slide-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.slide-right.visible { opacity: 1; transform: translateX(0); }

/* ===================== HEADER ===================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-border);
  transition: background 0.3s, box-shadow 0.3s;
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header-logo img { height: 44px; width: auto; }
.header-logo span {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary);
  letter-spacing: 0.5px;
}
[data-theme="dark"] .header-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--text-secondary);
  padding: 8px 10px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--primary); background: rgba(10,30,61,0.04); }
[data-theme="dark"] .nav-links a:hover { color: var(--gold); background: rgba(200,168,78,0.08); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.lang-toggle {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 12px;
  border: 1.5px solid var(--input-border);
  border-radius: 6px;
  color: var(--text);
  background: transparent;
  transition: border-color 0.2s;
  cursor: pointer;
}
.lang-toggle:hover { border-color: var(--gold); }
.dark-toggle {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-secondary);
  transition: background 0.2s;
}
.dark-toggle:hover { background: rgba(10,30,61,0.06); }
[data-theme="dark"] .dark-toggle:hover { background: rgba(255,255,255,0.08); }
.dark-toggle svg { width: 18px; height: 18px; }

.btn-donate-header {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 8px 20px;
  background: var(--gold);
  color: var(--primary);
  border-radius: 6px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-donate-header:hover { background: #b8983e; transform: translateY(-1px); }

/* Mobile Menu */
.hamburger {
  display: none;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  color: var(--text);
}
.hamburger svg { width: 24px; height: 24px; }

@media (max-width: 1024px) {
  .nav-links a { font-size: 0.78rem; padding: 8px 6px; }
}
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--header-bg);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 10001;
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1rem; padding: 14px 16px; width: 100%; }
  .header-inner { height: 64px; padding: 0 16px; }
  .header-logo { gap: 8px; }
  .header-logo img { height: 38px; }
  .header-logo span { font-size: 1.05rem; }
  .header-actions { gap: 8px; }
  .lang-toggle { padding: 5px 10px; font-size: 0.75rem; }
  .dark-toggle { width: 32px; height: 32px; }
  .btn-donate-header { padding: 7px 14px; font-size: 0.78rem; }
  .hamburger { width: 36px; height: 36px; }
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('elements/cambodia-3222522.jpg') center/cover no-repeat;
  opacity: 0.12;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(30deg, rgba(200,168,78,0.03) 12%, transparent 12.5%, transparent 87%, rgba(200,168,78,0.03) 87.5%),
    linear-gradient(150deg, rgba(200,168,78,0.03) 12%, transparent 12.5%, transparent 87%, rgba(200,168,78,0.03) 87.5%),
    linear-gradient(30deg, rgba(200,168,78,0.03) 12%, transparent 12.5%, transparent 87%, rgba(200,168,78,0.03) 87.5%),
    linear-gradient(150deg, rgba(200,168,78,0.03) 12%, transparent 12.5%, transparent 87%, rgba(200,168,78,0.03) 87.5%);
  background-size: 80px 140px;
  background-position: 0 0, 0 0, 40px 70px, 40px 70px;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  padding: 60px 24px;
}
.hero-logo { width: 120px; height: 120px; margin: 0 auto 32px; border-radius: 50%; }
.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 3px;
  margin-bottom: 8px;
}
.hero-subtitle {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 24px;
}
.hero-baseline {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: rgba(255,255,255,0.92);
  margin-bottom: 20px;
  opacity: 0;
  animation: heroFadeIn 1s ease 0.5s forwards;
}
.hero-description {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 16px;
}
.hero-pillars {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 40px;
  opacity: 0.85;
}
@keyframes heroFadeIn { to { opacity: 1; } }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-hero-primary {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--primary);
  border-radius: 6px;
  transition: background 0.2s, transform 0.15s;
}
.btn-hero-primary:hover { background: #b8983e; transform: translateY(-2px); }
.btn-hero-outline {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 32px;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: var(--white);
  border-radius: 6px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-hero-outline:hover { border-color: var(--gold); background: rgba(200,168,78,0.08); }

/* ===================== MISSION ===================== */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.mission-points { display: flex; flex-direction: column; gap: 20px; }
.mission-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.mission-point-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(46,109,164,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--asean-blue);
}
.mission-point-icon svg { width: 22px; height: 22px; }
.mission-point p { font-size: 1.05rem; color: var(--text); }
.mission-belief {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--text);
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin-top: 16px;
  line-height: 1.7;
}
@media (max-width: 768px) { .mission-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ===================== AXES ===================== */
.axes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.axe-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 36px 28px;
  box-shadow: var(--card-shadow);
  border: 2px solid transparent;
}
.axe-icon {
  width: 56px;
  height: 56px;
  background: rgba(200,168,78,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
}
.axe-icon svg { width: 28px; height: 28px; }
.axe-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.axe-card p { font-size: 0.95rem; color: var(--text-secondary); margin-bottom: 12px; line-height: 1.65; }
.axe-card h4 { font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 0.85rem; color: var(--gold); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.axe-card ul { padding-left: 0; }
.axe-card li {
  font-size: 0.92rem;
  color: var(--text-secondary);
  padding: 4px 0 4px 20px;
  position: relative;
}
.axe-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 2px;
  background: var(--gold);
}
@media (max-width: 900px) { .axes-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; } }

/* ===================== MAP ===================== */
#leafletMap {
  width: 100%;
  height: 500px;
  border-radius: 12px;
  border: 1px solid #ddd;
  z-index: 1;
}
.map-legend-leaflet {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 24px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.map-legend-leaflet .legend-item { display: flex; align-items: center; gap: 8px; }
.map-legend-leaflet .legend-dot {
  width: 14px; height: 14px; border-radius: 3px; display: inline-block;
}
.map-legend-leaflet .legend-dot.active { background: #2E6DA4; }
.map-legend-leaflet .legend-dot.inactive { background: #C0C0C0; }
@media (max-width: 600px) {
  #leafletMap { height: 350px; }
}
.leaflet-tooltip-custom {
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 6px;
  background: #0A1E3D;
  color: #fff;
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.leaflet-tooltip-custom::before { border-top-color: #0A1E3D; }

/* ===================== STATS ===================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }

/* ===================== TIMELINE ===================== */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 32px;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -33px;
  top: 8px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--bg);
}
.timeline-year {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.timeline-card {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 24px;
  box-shadow: var(--card-shadow);
}
.timeline-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.timeline-location {
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.timeline-status {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.timeline-status.ongoing { background: rgba(46,109,164,0.12); color: var(--asean-blue); }
.timeline-status.completed { background: rgba(200,168,78,0.15); color: var(--gold); }

/* ===================== ABOUT ===================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.about-block h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--text);
}
.about-block p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 14px;
  line-height: 1.7;
}
.about-block ul { padding-left: 0; margin-bottom: 14px; }
.about-block li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  padding: 5px 0 5px 24px;
  position: relative;
}
.about-block li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 10px;
  height: 2px;
  background: var(--gold);
}
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } }

/* ===================== TRANSPARENCY ===================== */
.transparency-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.transparency-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--card-bg);
  border-radius: 10px;
  box-shadow: var(--card-shadow);
}
.transparency-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(46,109,164,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--asean-blue);
}
.transparency-icon svg { width: 20px; height: 20px; }
.transparency-item span { font-size: 0.95rem; color: var(--text); }
.transparency-conclusion {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.btn-outline {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 12px 28px;
  border: 2px solid var(--gold);
  color: var(--gold);
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--gold); color: var(--primary); }
@media (max-width: 640px) { .transparency-list { grid-template-columns: 1fr; } }

/* ===================== PARTNERS ===================== */
.partners-types {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.partner-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 32px 20px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.partner-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.partner-initials {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--gold);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.partner-name {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.35;
}
.partners-conclusion {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 640px;
}
@media (max-width: 640px) { .partners-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===================== DONATIONS ===================== */
.donation-box {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.donation-toggle {
  display: inline-flex;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  margin-bottom: 32px;
  overflow: hidden;
}
.donation-toggle-btn {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 12px 28px;
  color: rgba(255,255,255,0.6);
  transition: background 0.2s, color 0.2s;
}
.donation-toggle-btn.active { background: var(--gold); color: var(--primary); }
.donation-amounts {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.donation-amount-btn {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 16px 28px;
  border: 2px solid rgba(255,255,255,0.2);
  color: var(--white);
  border-radius: 8px;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  min-width: 100px;
}
.donation-amount-btn:hover, .donation-amount-btn.selected {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--primary);
}
.donation-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}
.donation-custom input {
  width: 120px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  color: var(--white);
  font-size: 1rem;
  text-align: center;
}
.donation-custom input::placeholder { color: rgba(255,255,255,0.4); }
.donation-custom span { color: rgba(255,255,255,0.6); font-size: 0.95rem; }
.btn-donate {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 48px;
  background: var(--gold);
  color: var(--primary);
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s;
  margin-bottom: 16px;
}
.btn-donate:hover { background: #b8983e; transform: translateY(-2px); }
.donation-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}
.donation-secure svg { width: 16px; height: 16px; }
.donation-points {
  text-align: left;
  margin-bottom: 28px;
  padding-left: 0;
}
.donation-points li {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  padding: 4px 0 4px 24px;
  position: relative;
}
.donation-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 10px;
  height: 2px;
  background: var(--gold);
}

/* ===================== NEWS ===================== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.news-card {
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.news-card-body { padding: 24px; }
.news-date {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.news-card h3 { font-size: 1.1rem; margin-bottom: 10px; line-height: 1.35; }
.news-card p { font-size: 0.92rem; color: var(--text-secondary); margin-bottom: 14px; line-height: 1.6; }
.news-link {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--asean-blue);
  transition: color 0.2s;
}
.news-link:hover { color: var(--gold); }
@media (max-width: 768px) { .news-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

/* ===================== CONTACT ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
}
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--input-border);
  border-radius: 8px;
  background: var(--input-bg);
  color: var(--text);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--asean-blue);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-send {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 36px;
  background: var(--primary);
  color: var(--white);
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s;
  align-self: flex-start;
}
.btn-send:hover { background: #142d54; transform: translateY(-1px); }
[data-theme="dark"] .btn-send { background: var(--gold); color: var(--primary); }
.form-rgpd { font-size: 0.8rem; color: var(--text-secondary); }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(200,168,78,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-item p { font-size: 0.95rem; color: var(--text-secondary); }
.contact-thanks {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--text);
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin-top: 16px;
  line-height: 1.6;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

/* ===================== FOOTER ===================== */
.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-col h4 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.6; margin-bottom: 16px; }
.footer-brand img { height: 100px; margin-bottom: 12px; }
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--footer-text);
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-social svg { width: 16px; height: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.82rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--gold); }
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===================== MODAL ===================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal-overlay.active {
  display: flex;
  opacity: 1;
}
.modal-content {
  background: var(--card-bg, #fff);
  border-radius: 16px;
  max-width: 720px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 48px 40px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 2rem;
  line-height: 1;
  color: var(--text-secondary);
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--text); }
.modal-content h2 {
  font-size: 1.6rem;
  margin-bottom: 24px;
  color: var(--text);
}
.modal-content h3 {
  font-size: 1.15rem;
  margin: 24px 0 10px;
  color: var(--text);
}
.modal-content p, .modal-content li {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 10px;
}
.modal-content ul {
  padding-left: 20px;
  list-style: disc;
  margin-bottom: 16px;
}
.modal-content a { color: var(--asean-blue); text-decoration: underline; }
@media (max-width: 600px) {
  .modal-content { padding: 32px 20px; }
}

/* ===================== PHOTO BANNER ===================== */
.photo-banner {
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.photo-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
@media (max-width: 768px) {
  .photo-banner { height: 250px; }
}

/* ===================== ABOUT IMAGE ===================== */
.about-image {
  display: flex;
  align-items: center;
}
.about-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  max-height: 380px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* ===================== SECTION ASEAN AVEC PHOTO ===================== */
.section-asean {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: var(--primary);
}
.section-asean-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}
.section-asean-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,30,61,0.92) 0%, rgba(10,30,61,0.78) 100%);
}
.section-asean-content {
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .section-asean { padding: 80px 0; }
}

/* ===================== SUPPORT CTA (index) ===================== */
.support-cta {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.support-cta-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 36px;
}
.support-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
