/* 96M Malaysia — 2026 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --blue: #1a3a6b;
  --blue-light: #2a5298;
  --blue-dark: #0f2347;
  --orange: #f58220;
  --orange-light: #ff9a3c;
  --orange-dark: #d96e0f;
  --gold: #fbbf24;
  --white: #ffffff;
  --black: #0b0f1a;
  --gray-50: #f7f8fa;
  --gray-100: #eef0f4;
  --gray-200: #dde1e8;
  --gray-400: #9ca3b0;
  --gray-600: #5a6275;
  --gray-800: #1e2433;
  --font: 'Inter', system-ui, sans-serif;
  --radius: 14px;
  --radius-sm: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: all 0.25s; }
a:hover { color: var(--orange); }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ===== HEADER ===== */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 var(--gray-100);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: 1180px;
  margin: 0 auto;
  height: 64px;
}

.logo { display: flex; align-items: center; }
.logo img { height: 36px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--gray-600);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gray-800);
  background: var(--gray-50);
}

/* Language Switcher */
.lang-switch {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  background: var(--gray-50) !important;
  border: 1px solid var(--gray-200) !important;
  color: var(--gray-800) !important;
  padding: 6px 14px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: 0.82rem !important;
}

.lang-switch:hover {
  background: var(--gray-100) !important;
  color: var(--gray-800) !important;
}

.lang-switch .flag {
  width: 18px;
  height: 13px;
  border-radius: 2px;
  display: inline-block;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
}

/* Nav CTA */
.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.3px;
}

.nav-cta:hover {
  background: var(--orange-dark) !important;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gray-800);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 32px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.88rem;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
  letter-spacing: 0.2px;
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
}

.btn-orange:hover {
  background: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,130,32,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
  padding: 12px 30px;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}

.btn-dark {
  background: var(--gray-800);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
}

.btn-blue:hover {
  background: var(--blue-dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== HERO — split layout ===== */
.hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, var(--blue-light) 100%);
  color: var(--white);
  padding: 0;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  max-width: 1180px;
  margin: 0 auto;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 24px 60px 24px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange-light);
  margin-bottom: 20px;
}

.hero-tag::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--orange);
}

.hero h1 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.hero h1 span {
  color: var(--orange-light);
}

.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 460px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-visual::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,130,32,0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-stats {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 40px;
}

.hero-stat {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}

.hero-stat h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange-light);
  margin-bottom: 4px;
}

.hero-stat p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== MARQUEE STRIP ===== */
.trust-strip {
  background: var(--gray-800);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  animation: marquee 30s linear infinite;
}

.trust-strip span {
  color: var(--gray-400);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.trust-strip .dot {
  color: var(--orange);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SECTIONS ===== */
section { padding: 80px 0; }

.section-gray { background: var(--gray-50); }

.section-head {
  margin-bottom: 48px;
}

.section-head.center { text-align: center; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--orange);
}

.section-head h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gray-800);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-head p {
  color: var(--gray-600);
  font-size: 1.05rem;
  max-width: 520px;
}

.section-head.center p { margin: 0 auto; }

/* ===== BENTO CARDS ===== */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.bento-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.bento-card:hover {
  border-color: var(--gray-200);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.bento-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-color: transparent;
  color: var(--white);
}

.bento-card.featured .bento-icon { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.15); }
.bento-card.featured .bento-icon img { filter: brightness(0) invert(1); }
.bento-card.featured h3 { color: var(--white); }
.bento-card.featured p { color: rgba(255,255,255,0.7); }

.bento-card.accent {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-color: transparent;
  color: var(--white);
}

.bento-card.accent .bento-icon { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.2); }
.bento-card.accent .bento-icon img { filter: brightness(0) invert(1); }
.bento-card.accent h3 { color: var(--white); }
.bento-card.accent p { color: rgba(255,255,255,0.8); }

.bento-icon {
  width: 48px;
  height: 48px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 11px;
}

.bento-icon img { width: 24px; height: 24px; }

.bento-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--gray-800);
}

.bento-card p {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ===== AMBASSADOR — horizontal layout ===== */
.amb-list { display: flex; flex-direction: column; gap: 16px; }

.amb-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s;
}

.amb-row:hover {
  border-color: var(--gray-200);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.amb-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  flex-shrink: 0;
}

.amb-avatar img { width: 40px; height: 40px; filter: brightness(0) invert(1); }

.amb-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 2px;
}

.amb-info .amb-role {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 8px;
}

.amb-info p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===== PROMO CARDS ===== */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 16px;
}

.promo-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
}

.promo-card:hover {
  border-color: var(--gray-200);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.promo-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 3px 12px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.promo-card-body { padding: 28px; }

.promo-card h3 {
  font-size: 1.05rem;
  color: var(--gray-800);
  margin-bottom: 8px;
  font-weight: 700;
}

.promo-card p {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 18px;
  line-height: 1.65;
}

.promo-card .btn {
  padding: 10px 24px;
  font-size: 0.8rem;
}

/* ===== PROMO TERMS ===== */
.promo-terms {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 32px;
  margin-top: 40px;
}

.promo-terms h3 { color: var(--gray-800); margin-bottom: 14px; font-size: 1rem; font-weight: 700; }
.promo-terms ul { padding-left: 20px; }
.promo-terms li { margin-bottom: 6px; font-size: 0.88rem; color: var(--gray-600); }

/* ===== CTA ===== */
.cta {
  background: var(--gray-800);
  padding: 64px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.cta p {
  color: var(--gray-400);
  font-size: 0.95rem;
  max-width: 460px;
}

.cta .btn-orange:hover {
  box-shadow: 0 6px 20px rgba(245,130,32,0.4);
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
  padding: 60px 24px;
  text-align: center;
}

.page-header h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.page-header p {
  color: var(--gray-600);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ===== CONTENT (About page) ===== */
.content-section { padding: 50px 0; }

.content-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 16px;
}

.content-section p {
  margin-bottom: 16px;
  color: var(--gray-600);
}

.content-section ul { margin: 16px 0; padding-left: 24px; }
.content-section li { margin-bottom: 8px; color: var(--gray-600); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.highlight-box {
  background: var(--gray-50);
  border-left: 3px solid var(--orange);
  padding: 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 20px 0;
}

.highlight-box p { margin: 0; color: var(--gray-600); }

/* Feature cards on about page */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.3s;
}

.card:hover {
  border-color: var(--gray-200);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 11px;
}

.card-icon img { width: 24px; height: 24px; }
.card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--gray-800); }
.card p { color: var(--gray-600); font-size: 0.9rem; line-height: 1.65; }

/* Ambassador cards on about page */
.ambassador-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}

.ambassador-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: all 0.3s;
}

.ambassador-card:hover {
  border-color: var(--gray-200);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.ambassador-card .ambassador-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.ambassador-card .ambassador-icon img { width: 36px; height: 36px; filter: brightness(0) invert(1); }
.ambassador-card h3 { font-size: 1.05rem; color: var(--gray-800); margin-bottom: 4px; font-weight: 700; }
.ambassador-card .ambassador-role { color: var(--orange); font-size: 0.82rem; font-weight: 600; margin-bottom: 10px; }
.ambassador-card p { color: var(--gray-600); font-size: 0.9rem; }

/* CTA Banner (used on sub pages) */
.cta-banner {
  background: var(--gray-800);
  text-align: center;
  padding: 64px 24px;
}

.cta-banner h2 { font-size: 1.8rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.cta-banner p { color: var(--gray-400); max-width: 480px; margin: 0 auto 24px; }
.cta-banner .btn { background: var(--orange); color: var(--white); }
.cta-banner .btn:hover { background: var(--orange-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,130,32,0.4); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.6);
  padding: 48px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
}

.footer-logo img { height: 32px; width: auto; margin-bottom: 14px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; }

.site-footer h4 {
  color: var(--white);
  margin-bottom: 14px;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.88rem; }
.footer-links a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
}

.footer-bottom p { color: rgba(255,255,255,0.35); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { min-height: 280px; }
  .hero-content { padding: 48px 24px 32px; }
  .hero h1 { font-size: 2.2rem; }
  .bento { grid-template-columns: 1fr; }
  .bento-card.featured { grid-column: span 1; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta p { margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    border-bottom: 1px solid var(--gray-100);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  }

  .nav-links.active { display: flex; }
  .nav-links a { width: 100%; padding: 12px 14px; }

  .hero h1 { font-size: 1.9rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; padding: 20px; gap: 10px; }
  .hero-stat { padding: 18px 14px; }

  .section-head h2 { font-size: 1.7rem; }
  .card-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .amb-row { grid-template-columns: 1fr; text-align: center; }
  .amb-avatar { margin: 0 auto; }
  .page-header h1 { font-size: 1.7rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.6rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
}
