/* ================================================
   DR SHAHRUL AMRY HASHIM — PROFESSIONAL WEBSITE
   Stylesheet v1.0 | April 2026
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ========================
   ROOT VARIABLES
   ======================== */
:root {
  --navy:      #0D1F3C;
  --navy-mid:  #162d56;
  --navy-light:#1e3a6e;
  --gold:      #C9A84C;
  --gold-dark: #a8893c;
  --gold-light:#e8c875;
  --cream:     #F5E6C8;
  --offwhite:  #F4F6F9;
  --charcoal:  #333333;
  --white:     #FFFFFF;
  --grey:      #888888;
  --grey-light:#cccccc;
  --success:   #2e7d52;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', Arial, sans-serif;

  --container:  1200px;
  --radius:     8px;
  --radius-lg:  16px;
  --transition: 0.3s ease;
  --shadow:     0 4px 24px rgba(13,31,60,0.10);
  --shadow-lg:  0 8px 48px rgba(13,31,60,0.18);
  --shadow-gold:0 4px 24px rgba(201,168,76,0.25);
}

/* ========================
   RESET & BASE
   ======================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-dark); }
ul { list-style: none; }

/* ========================
   CONTAINERS & LAYOUT
   ======================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section--dark { background: var(--navy); color: var(--white); }
.section--navy-mid { background: var(--navy-mid); color: var(--white); }
.section--offwhite { background: var(--offwhite); }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }

/* ========================
   TYPOGRAPHY
   ======================== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(36px, 5vw, 56px); }
h2 { font-size: clamp(28px, 3.5vw, 40px); }
h3 { font-size: clamp(20px, 2.5vw, 26px); }
h4 { font-size: 20px; }
p  { margin-bottom: 1em; font-size: 16px; line-height: 1.8; }
p:last-child { margin-bottom: 0; }

.text-gold   { color: var(--gold); }
.text-navy   { color: var(--navy); }
.text-white  { color: var(--white); }
.text-center { text-align: center; }
.text-sm     { font-size: 14px; }
.text-lg     { font-size: 18px; }

.section-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-family: var(--font-heading);
  margin-bottom: 16px;
}
.section-title--light { color: var(--white); }
.section-subtitle {
  font-size: 17px;
  color: var(--grey);
  max-width: 680px;
  margin: 0 auto 48px;
  line-height: 1.8;
}
.section-subtitle--light { color: rgba(255,255,255,0.75); }
.section-header { text-align: center; margin-bottom: 56px; }
.gold-rule {
  width: 60px; height: 3px;
  background: var(--gold);
  margin: 16px auto 24px;
  border: none;
}
.gold-rule--left { margin-left: 0; }

/* ========================
   NAVIGATION
   ======================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,31,60,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.3); }
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.navbar__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.navbar__logo-name {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.3px;
}
.navbar__logo-title {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}
.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.navbar__links a {
  color: rgba(255,255,255,0.85);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.4px;
  position: relative;
  transition: color var(--transition);
}
.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.navbar__links a:hover,
.navbar__links a.active { color: var(--gold); }
.navbar__links a:hover::after,
.navbar__links a.active::after { width: 100%; }
.navbar__cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 9px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 13px !important;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.navbar__cta::after { display: none !important; }
.navbar__cta:hover { background: var(--gold-dark); color: var(--navy) !important; }
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.navbar__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.navbar__mobile {
  display: none;
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 4px;
}
.navbar__mobile.open { display: flex; }
.navbar__mobile a {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.navbar__mobile a:last-child { border-bottom: none; }
.navbar__mobile a:hover { color: var(--gold); }

/* ========================
   BUTTONS
   ======================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  border: 2px solid transparent;
  letter-spacing: 0.3px;
  text-decoration: none;
}
.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}
.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
}
.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--navy:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  color: var(--white);
}
.btn--lg { padding: 16px 36px; font-size: 16px; }
.btn--sm { padding: 10px 20px; font-size: 14px; }
.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ========================
   HERO — HOME
   ======================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0D1F3C 0%, #162d56 50%, #0D1F3C 100%);
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at 70% 60%, rgba(201,168,76,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero__title {
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.15;
}
.hero__title em {
  font-style: normal;
  color: var(--gold);
}
.hero__subtitle {
  color: rgba(255,255,255,0.78);
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 540px;
}
.hero__ctas { margin-bottom: 48px; }
.hero__stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero__stat {
  border-left: 2px solid var(--gold);
  padding-left: 16px;
}
.hero__stat-num {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.hero__stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero__card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(8px);
}
.hero__card-title {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.hero__card-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero__card-item:last-child { border-bottom: none; }
.hero__card-icon {
  width: 32px; height: 32px;
  background: rgba(201,168,76,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 14px;
}
.hero__card-text strong {
  display: block;
  color: var(--white);
  font-size: 14px;
  margin-bottom: 2px;
}
.hero__card-text span {
  color: rgba(255,255,255,0.6);
  font-size: 12.5px;
}

/* ========================
   HERO — INNER PAGES
   ======================== */
.page-hero {
  background: linear-gradient(135deg, #0D1F3C 0%, #1a2f52 100%);
  padding: 140px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.08) 0%, transparent 65%);
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero__breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.page-hero__breadcrumb a { color: var(--gold); }
.page-hero__breadcrumb span { margin: 0 8px; }
.page-hero h1 { color: var(--white); max-width: 780px; }
.page-hero .gold-rule { margin: 20px 0; }
.page-hero p {
  color: rgba(255,255,255,0.78);
  font-size: 18px;
  max-width: 660px;
  margin-bottom: 0;
}

/* ========================
   TRUST BAR
   ======================== */
.trust-bar {
  background: var(--navy-mid);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 20px 0;
}
.trust-bar__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 28px;
  border-right: 1px solid rgba(201,168,76,0.2);
}
.trust-bar__item:last-child { border-right: none; }
.trust-bar__icon {
  font-size: 22px;
  color: var(--gold);
  flex-shrink: 0;
}
.trust-bar__text strong {
  display: block;
  color: var(--white);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.2;
}
.trust-bar__text span {
  color: rgba(255,255,255,0.55);
  font-size: 11.5px;
}

/* ========================
   COMPARISON TABLE
   ======================== */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.3);
  box-shadow: var(--shadow-lg);
}
.comparison-col { background: var(--white); }
.comparison-col--mics { background: var(--navy); }
.comparison-col__header {
  padding: 28px 32px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.comparison-col--mics .comparison-col__header {
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
}
.comparison-col__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.comparison-col--open .comparison-col__label { color: var(--grey); }
.comparison-col--mics .comparison-col__label { color: var(--gold); }
.comparison-col__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
}
.comparison-col--open .comparison-col__title { color: var(--navy); }
.comparison-col--mics .comparison-col__title { color: var(--white); }
.comparison-col__badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-top: 8px;
}
.comparison-row {
  display: contents;
}
.comparison-cell {
  padding: 16px 28px;
  border-bottom: 1px solid rgba(201,168,76,0.12);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}
.comparison-cell--open { color: var(--charcoal); }
.comparison-cell--mics {
  color: var(--white);
  background: rgba(255,255,255,0.03);
}
.comparison-cell--label {
  background: var(--offwhite) !important;
  color: var(--navy) !important;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  grid-column: 1 / -1;
  padding: 10px 28px;
}
.comparison-cell .check { color: #2e7d52; font-size: 16px; }
.comparison-cell .cross { color: #c0392b; font-size: 16px; }
.comparison-cell .highlight { color: var(--gold); font-weight: 600; }

/* ========================
   COMPARISON TABLE (HTML <table> — mobile-friendly)
   ======================== */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201,168,76,0.25);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 0;
}
.comparison-table thead th {
  padding: 16px 14px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  line-height: 1.4;
  vertical-align: top;
}
.comparison-table thead .col-factor {
  background: var(--offwhite);
  color: var(--navy);
  width: 90px;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.comparison-table thead .col-open {
  background: var(--white);
  color: var(--navy);
  border-bottom: 3px solid rgba(201,168,76,0.2);
}
.comparison-table thead .col-mics {
  background: var(--navy);
  color: var(--white);
  border-bottom: 3px solid var(--gold);
}
.col-mics__badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 20px;
  margin-top: 6px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}
.comparison-table tbody td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(201,168,76,0.12);
  font-size: 13.5px;
  vertical-align: middle;
  line-height: 1.45;
}
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody .ct-factor {
  background: var(--offwhite);
  font-weight: 700;
  color: var(--navy);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  white-space: nowrap;
  width: 90px;
}
.comparison-table tbody .ct-open {
  background: var(--white);
  color: var(--charcoal);
}
.comparison-table tbody .ct-mics {
  background: rgba(13,31,60,0.03);
  color: var(--charcoal);
}
.comparison-table .ct-mics strong { color: var(--gold-dark); }
.comparison-table .check { color: #2e7d52; font-weight: 700; margin-right: 5px; }
.comparison-table .cross { color: #c0392b; font-weight: 700; margin-right: 5px; }

/* ========================
   PROCEDURE CARDS
   ======================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cards-grid--2 { grid-template-columns: repeat(2, 1fr); }
.cards-grid--4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card--dark {
  background: var(--navy-mid);
  border-color: var(--gold);
}
.card__icon {
  width: 52px; height: 52px;
  background: rgba(201,168,76,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 20px;
}
.card__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.card--dark .card__title { color: var(--white); }
.card__text {
  font-size: 14.5px;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 0;
}
.card--dark .card__text { color: rgba(255,255,255,0.65); }
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 13.5px;
  font-weight: 600;
  margin-top: 16px;
}
.card__link:hover { gap: 10px; }

/* ========================
   STEPS / TIMELINE
   ======================== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--gold), rgba(201,168,76,0.3));
  z-index: 0;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step__num {
  width: 56px; height: 56px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-gold);
}
.step__title {
  font-family: var(--font-heading);
  font-size: 19px;
  color: var(--white);
  margin-bottom: 10px;
}
.step__text {
  font-size: 14.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ========================
   FAQ ACCORDION
   ======================== */
.faq { max-width: 800px; margin: 0 auto; }
.faq__item {
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
}
.faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  transition: background var(--transition);
}
.faq__question:hover { background: rgba(201,168,76,0.05); }
.faq__question.open { background: var(--navy); color: var(--white); }
.faq__icon {
  width: 28px; height: 28px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 300;
  opacity: 0.7;
  transition: transform var(--transition);
}
.faq__question.open .faq__icon { transform: rotate(45deg); }
.faq__answer {
  display: none;
  padding: 20px 24px;
  background: var(--offwhite);
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--charcoal);
  border-top: 1px solid rgba(201,168,76,0.15);
}
.faq__answer.open { display: block; }

/* ========================
   QUOTE BLOCK
   ======================== */
.quote-block {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  position: relative;
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
}
.quote-block::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 200px;
  color: var(--gold);
  opacity: 0.12;
  position: absolute;
  top: -40px; left: 24px;
  line-height: 1;
  pointer-events: none;
}
.quote-block__text {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--white);
  line-height: 1.8;
  font-style: italic;
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}
.quote-block__attr {
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

/* ========================
   CREDENTIALS TABLE
   ======================== */
.creds-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.creds-table th {
  background: var(--navy);
  color: var(--gold);
  padding: 14px 20px;
  text-align: left;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}
.creds-table td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(201,168,76,0.12);
  vertical-align: top;
  color: var(--charcoal);
}
.creds-table tr:last-child td { border-bottom: none; }
.creds-table tr:nth-child(odd) td { background: var(--offwhite); }
.creds-table tr:hover td { background: rgba(201,168,76,0.06); }
.creds-table td:first-child { font-weight: 600; color: var(--gold); font-size: 13px; white-space: nowrap; }

/* ========================
   KEY FACTS GRID
   ======================== */
.keyfacts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.2);
}
.keyfacts__item {
  background: var(--white);
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.keyfacts__label {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.keyfacts__value {
  font-size: 15px;
  color: var(--charcoal);
  font-weight: 500;
}
.keyfacts__icon {
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ========================
   AWARDS
   ======================== */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.award-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}
.award-card__icon { font-size: 36px; margin-bottom: 12px; }
.award-card__year {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.award-card__title {
  font-family: var(--font-heading);
  font-size: 17px;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}
.award-card__org { font-size: 13px; color: rgba(255,255,255,0.55); }

/* ========================
   CONDITIONS LIST
   ======================== */
.condition-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(201,168,76,0.2);
  margin-bottom: 12px;
  overflow: hidden;
}
.condition-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  transition: background var(--transition);
}
.condition-btn:hover { background: rgba(201,168,76,0.05); }
.condition-btn.open { background: var(--navy); color: var(--white); }
.condition-icon {
  font-size: 22px;
  color: var(--gold);
  margin-right: 12px;
  flex-shrink: 0;
}
.condition-btn.open .condition-icon { color: var(--gold); }
.condition-chevron {
  font-size: 20px;
  transition: transform var(--transition);
  flex-shrink: 0;
  color: var(--gold);
}
.condition-btn.open .condition-chevron { transform: rotate(180deg); }
.condition-body {
  display: none;
  padding: 24px;
  background: var(--offwhite);
  border-top: 1px solid rgba(201,168,76,0.15);
}
.condition-body.open { display: block; }
.condition-body p { margin-bottom: 12px; font-size: 15.5px; }
.condition-body .tag {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  margin: 4px 4px 4px 0;
}

/* ========================
   REFERRAL CHECKLIST
   ======================== */
.checklist { list-style: none; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(201,168,76,0.12);
  font-size: 15px;
}
.checklist li:last-child { border-bottom: none; }
.checklist__check {
  width: 22px; height: 22px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}

/* ========================
   PROCESS FLOW
   ======================== */
.process-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  position: relative;
}
.process-step::before {
  content: '';
  position: absolute;
  left: 19px; top: 48px;
  width: 2px; height: calc(100% - 24px);
  background: rgba(201,168,76,0.25);
}
.process-step:last-child::before { display: none; }
.process-step__num {
  width: 40px; height: 40px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
  z-index: 1;
}
.process-step__content {
  background: var(--offwhite);
  border-radius: var(--radius);
  padding: 16px 20px;
  flex: 1;
  margin-bottom: 12px;
  border-left: 3px solid rgba(201,168,76,0.3);
}
.process-step__title {
  font-weight: 600;
  color: var(--navy);
  font-size: 15px;
  margin-bottom: 4px;
}
.process-step__text {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.6;
}

/* ========================
   CONTACT FORM
   ======================== */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }

/* ========================
   INFO BOX
   ======================== */
.info-box {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 14.5px;
}
.info-box--navy {
  background: var(--navy);
  border-color: rgba(201,168,76,0.3);
  color: var(--white);
}
.info-box__title {
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ========================
   HIGHLIGHT STAT BAND
   ======================== */
.stat-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 60px 0;
}
.stat-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item__num {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item__label {
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.stat-item__divider {
  width: 32px; height: 2px;
  background: var(--gold);
  margin: 12px auto;
  opacity: 0.5;
}

/* ========================
   FOOTER
   ======================== */
.footer {
  background: #060f1f;
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.footer__brand-title {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer__brand-text {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.55);
}
.footer__col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--gold); }
.footer__contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  align-items: flex-start;
}
.footer__contact-icon { color: var(--gold); flex-shrink: 0; font-size: 15px; margin-top: 2px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p { font-size: 12.5px; color: rgba(255,255,255,0.4); margin: 0; }
.footer__disclaimer {
  background: rgba(255,255,255,0.04);
  padding: 16px 24px;
  border-radius: var(--radius);
  margin-bottom: 32px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  border-left: 2px solid rgba(201,168,76,0.3);
}

/* ========================
   WHATSAPP FLOATING BUTTON
   ======================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: var(--white);
  padding: 14px 22px 14px 18px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: float-pulse 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
  color: var(--white);
}
.whatsapp-float svg { width: 22px; height: 22px; fill: currentColor; flex-shrink: 0; }
@keyframes float-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.65); }
}

/* ========================
   UTILITY
   ======================== */
.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.py-8 { padding-top: 8px; padding-bottom: 8px; }
.py-16 { padding-top: 16px; padding-bottom: 16px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.w-full { width: 100%; }
.hidden { display: none; }

/* ========================
   TWO-COLUMN LAYOUT
   ======================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.two-col--3-2 { grid-template-columns: 3fr 2fr; }
.two-col--2-3 { grid-template-columns: 2fr 3fr; }

/* ========================
   STICKY SIDEBAR
   ======================== */
.sidebar-sticky {
  position: sticky;
  top: 96px;
}
.sidebar-card {
  background: var(--navy);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.sidebar-card__title {
  font-family: var(--font-heading);
  font-size: 17px;
  color: var(--white);
  margin-bottom: 16px;
}
.sidebar-card ul { display: flex; flex-direction: column; gap: 10px; }
.sidebar-card ul li {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-card ul li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ========================
   PROCEDURE DETAIL LIST
   ======================== */
.proc-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.proc-list__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(201,168,76,0.2);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--charcoal);
  transition: border-color var(--transition), background var(--transition);
}
.proc-list__item:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.04);
}
.proc-list__item::before {
  content: '✦';
  color: var(--gold);
  font-size: 10px;
  flex-shrink: 0;
}

/* ========================
   MALAY TOGGLE BANNER
   ======================== */
.lang-banner {
  background: rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 8px 0;
  text-align: center;
  font-size: 13px;
  color: var(--charcoal);
}
.lang-banner a { color: var(--gold); font-weight: 600; }

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__card { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stat-band__grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .two-col--3-2,
  .two-col--2-3 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .navbar__links { display: none; }
  .navbar__hamburger { display: flex; }
  .hero { padding-top: 72px; min-height: auto; padding-bottom: 60px; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid--2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .comparison-grid { grid-template-columns: 1fr; }
  .comparison-col--open { order: 2; }
  .comparison-col--mics { order: 1; }
  .keyfacts { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: 1fr; }
  .proc-list { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .stat-band__grid { grid-template-columns: repeat(2, 1fr); }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 14px; border-radius: 50%; }
  .quote-block { padding: 32px 28px; }
  .quote-block__text { font-size: 17px; }
  .trust-bar__list { flex-direction: column; align-items: flex-start; gap: 4px; padding: 0 24px; }
  .trust-bar__item { border-right: none; padding: 8px 0; border-bottom: 1px solid rgba(201,168,76,0.1); width: 100%; }
  .trust-bar__item:last-child { border-bottom: none; }
  .sidebar-sticky { position: static; }
  .hero__stats { gap: 24px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__title { font-size: 32px; }
  h2 { font-size: 26px; }
  .btn--lg { padding: 14px 24px; font-size: 15px; }
  .btn-group { flex-direction: column; }
  .btn-group .btn { text-align: center; justify-content: center; }
  .stat-band__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

/* ========================
   FONT AWESOME ICON FIXES
   ======================== */
.card__icon i,
.trust-bar__icon i,
.hero__card-icon i,
.stat-item i,
.keyfacts__icon i,
.award-card__icon i,
.condition-icon i,
.info-row__icon i,
.footer__contact-icon i,
.checklist__check i,
.process-step__num i,
.sidebar-card ul li i {
  font-size: inherit;
  line-height: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.trust-bar__icon i { font-size: 20px; color: var(--gold); }
.card__icon i      { font-size: 22px; color: var(--gold); }
.hero__card-icon i { font-size: 14px; color: var(--gold); }
.award-card__icon i{ font-size: 32px; color: var(--gold); }
.keyfacts__icon i  { font-size: 18px; color: var(--gold); }
.condition-icon i  { font-size: 18px; color: var(--gold); }
.info-row__icon i  { font-size: 16px; color: var(--gold); }
.footer__contact-icon i { font-size: 14px; color: var(--gold); }
.checklist__check i { font-size: 11px; color: var(--navy); }

/* ========================
   HERO — PHOTO BACKGROUND
   ======================== */
.hero--photo {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  background: var(--navy);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13,31,60,0.92) 0%,
    rgba(13,31,60,0.80) 45%,
    rgba(13,31,60,0.45) 100%
  );
  z-index: 1;
}
.hero__photo-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  align-items: center;
}

@media (max-width: 1024px) {
  .hero__photo-layout { grid-template-columns: 1fr; }
  .hero__photo-layout .hero__card { display: none; }
  .hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(13,31,60,0.88) 0%,
      rgba(13,31,60,0.75) 100%
    );
  }
}

/* ========================
   TITLE MICS PILL — navy bg + white text matching table header
   ======================== */
.title-mics-pill {
  display: inline;
  background: var(--navy);
  color: var(--white);
  padding: 4px 14px 6px;
  border-radius: 6px;
  border-bottom: 3px solid var(--gold);
  white-space: nowrap;
}
/* Give the heading breathing room between the two lines */
#why-mics-title {
  line-height: 1.5;
}

/* ========================
   OR GALLERY — Home page 2+stack layout
   ======================== */
.or-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 12px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.or-gallery__main {
  overflow: hidden;
}
.or-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.or-gallery__main:hover img { transform: scale(1.03); }
.or-gallery__stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.or-gallery__stack img {
  width: 100%;
  flex: 1;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
  transition: transform 0.6s ease;
}
.or-gallery__stack img:hover { transform: scale(1.03); }
@media (max-width: 768px) {
  .or-gallery {
    grid-template-columns: 1fr;
  }
  .or-gallery__stack {
    flex-direction: column;
    gap: 12px;
  }
  .or-gallery__stack img {
    width: 100%;
    height: 240px;
    border-radius: var(--radius);
    flex: none;
  }
  /* Table: hide badge on very small screens to save header space */
  .col-mics__badge { display: none; }
}

/* ========================
   OR STRIP — MICS page full-width banner
   ======================== */
.or-strip {
  position: relative;
  max-height: 500px;
  overflow: hidden;
  background: var(--navy);
}
.or-strip img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  opacity: 0.88;
}
.or-strip__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 32px;
  background: linear-gradient(0deg, rgba(13,31,60,0.85) 0%, transparent 100%);
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.or-strip__caption i { color: var(--gold); }
@media (max-width: 768px) {
  .or-strip img { height: 280px; }
}

/* ========================
   OR DUO — About page two-photo panel
   ======================== */
.or-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.or-duo__item {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.or-duo__item img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.6s ease;
}
.or-duo__item:hover img { transform: scale(1.03); }
@media (max-width: 768px) {
  .or-duo {
    grid-template-columns: 1fr;
  }
  .or-duo__item img { height: 260px; }
}
