/* ==========================================================================
   RAMADHAN ADILUHUNG, M.M. - OFFICIAL EXECUTIVE PROFILE STYLESHEET
   Mobile-First & Proportional Responsive Design
   ========================================================================== */

/* --- Root Design Tokens & Variables --- */
:root {
  --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  /* Light Theme Palette - High Readability & Contrast */
  --bg-primary: #f8fafc;
  --bg-surface: #ffffff;
  --bg-surface-subtle: #f1f5f9;
  --bg-dark-section: #0f172a;
  
  --text-main: #0f172a;       /* Maximum legibility deep slate */
  --text-muted: #334155;      /* Crisp secondary text, never washed out */
  --text-headings: #020617;   /* Authoritative dark heading */

  --primary-navy: #1e3a8a;
  --primary-hover: #172554;
  --primary-light: #eff6ff;
  --accent-blue: #2563eb;
  --accent-indigo: #4f46e5;
  --accent-emerald: #059669;
  
  --border-subtle: #cbd5e1;
  --border-card: rgba(203, 213, 225, 0.9);
  
  --nav-bg: rgba(255, 255, 255, 0.96);
  --shadow-card: 0 10px 25px -5px rgba(15, 23, 42, 0.06), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --shadow-hover: 0 20px 30px -10px rgba(15, 23, 42, 0.12), 0 10px 15px -5px rgba(15, 23, 42, 0.08);
}

/* --- Dark Theme Palette --- */
body.theme-dark {
  --bg-primary: #090d16;
  --bg-surface: #111827;
  --bg-surface-subtle: #1e293b;
  --bg-dark-section: #050811;

  --text-main: #f1f5f9;       /* High contrast white-slate */
  --text-muted: #cbd5e1;      /* Clear secondary light gray */
  --text-headings: #ffffff;   /* Pure white headings */

  --primary-navy: #3b82f6;
  --primary-hover: #60a5fa;
  --primary-light: #1e293b;
  --accent-blue: #60a5fa;
  --accent-indigo: #818cf8;
  --accent-emerald: #34d399;

  --border-subtle: #334155;
  --border-card: #1f2937;

  --nav-bg: rgba(17, 24, 39, 0.96);
  --shadow-card: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
  --shadow-hover: 0 20px 30px -10px rgba(0, 0, 0, 0.7);
}

/* --- Base & Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-main);
  font-size: 16px;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  transition: font-size 0.2s ease;
}

/* Accessible Reading Sizes (A- / A / A+) */
html.text-size-lg {
  font-size: 18px;
}

html.text-size-xl {
  font-size: 20px;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.75;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  transition: background-color 0.3s ease, color 0.3s ease;
}

p, li {
  line-height: 1.75;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Fluid & Highly Readable Typography --- */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-headings);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

h1, .hero-title {
  font-size: clamp(2rem, 5.5vw + 0.5rem, 3.85rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.45rem, 3.5vw + 0.5rem, 2.35rem);
  line-height: 1.25;
}

h3 {
  font-size: clamp(1.15rem, 2vw + 0.5rem, 1.6rem);
  line-height: 1.3;
}

/* High-Legibility Font Scales (upgraded sizes) */
.text-xs { font-size: 0.85rem; line-height: 1.35rem; }     /* ~13.6px */
.text-sm { font-size: 0.95rem; line-height: 1.55rem; }     /* ~15.2px */
.text-base { font-size: 1.08rem; line-height: 1.75rem; }   /* ~17.3px */
.text-lg { font-size: 1.2rem; line-height: 1.85rem; }      /* ~19.2px */
.text-xl { font-size: 1.35rem; line-height: 2rem; }
.text-2xl { font-size: 1.6rem; line-height: 2.2rem; }
.text-3xl { font-size: 2rem; line-height: 2.45rem; }
.text-4xl { font-size: 2.45rem; line-height: 2.85rem; }
.text-5xl { font-size: 3.25rem; line-height: 1.15; }
.text-6xl { font-size: 4rem; line-height: 1.1; }

/* Never allow microscopic text below 12.5px */
.text-\[10px\], .text-\[11px\] {
  font-size: 0.785rem !important; /* ~12.5px */
  line-height: 1.25rem !important;
  letter-spacing: 0.02em;
}

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-mono { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.uppercase { text-transform: uppercase; }
.tracking-tight { letter-spacing: -0.02em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.leading-tight { line-height: 1.3; }
.leading-relaxed { line-height: 1.75; }
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* High Contrast Slate Shades */
.text-white { color: #ffffff; }
.text-slate-200 { color: #e2e8f0; }
.text-slate-300 { color: #cbd5e1; }
.text-slate-400 { color: #94a3b8; }
.text-slate-500 { color: #475569; } /* Darker for high contrast readability */
.text-slate-600 { color: #334155; } /* Highly readable body text */
.text-slate-700 { color: #1e293b; } /* Deep readable slate */
.text-slate-800 { color: #0f172a; } /* Strong emphasis */
.text-slate-900 { color: #020617; } /* Near pitch-black */

.text-blue-400 { color: #60a5fa; }
.text-blue-600 { color: #2563eb; }
.text-blue-700 { color: #1d4ed8; }
.text-blue-800 { color: #1e40af; }
.text-blue-900 { color: #1e3a8a; }

.text-indigo-400 { color: #818cf8; }
.text-indigo-700 { color: #4338ca; }
.text-indigo-800 { color: #3730a3; }

.text-emerald-400 { color: #34d399; }
.text-emerald-700 { color: #047857; }
.text-emerald-800 { color: #065f46; }

.text-purple-400 { color: #c084fc; }
.text-purple-700 { color: #7e22ce; }

.text-amber-400 { color: #fbbf24; }
.text-amber-700 { color: #b45309; }

.text-rose-600 { color: #e11d48; }
.text-rose-700 { color: #be123c; }

/* Backgrounds */
.bg-white { background-color: var(--bg-surface); }
.bg-slate-50 { background-color: var(--bg-primary); }
.bg-slate-100 { background-color: var(--bg-surface-subtle); }
.bg-slate-800 { background-color: #1e293b; }
.bg-slate-900 { background-color: #0f172a; }
.bg-slate-950 { background-color: #020617; }

.bg-blue-50 { background-color: #eff6ff; }
.bg-blue-100 { background-color: #dbeafe; }
.bg-blue-600 { background-color: #2563eb; }
.bg-blue-700 { background-color: #1d4ed8; }
.bg-blue-800 { background-color: #1e40af; }
.bg-blue-900 { background-color: #1e3a8a; }

.bg-indigo-50 { background-color: #eef2ff; }
.bg-indigo-100 { background-color: #e0e7ff; }
.bg-emerald-50 { background-color: #ecfdf5; }
.bg-emerald-100 { background-color: #d1fae5; }
.bg-emerald-500 { background-color: #10b981; }
.bg-emerald-600 { background-color: #059669; }
.bg-purple-50 { background-color: #faf5ff; }
.bg-amber-50 { background-color: #fffbeb; }
.bg-rose-50 { background-color: #fff1f2; }

/* Borders */
.border { border-width: 1px; border-style: solid; }
.border-2 { border-width: 2px; border-style: solid; }
.border-4 { border-width: 4px; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-l-2 { border-left-width: 2px; border-left-style: solid; }
.border-y { border-top-width: 1px; border-bottom-width: 1px; border-style: solid; }

.border-slate-100 { border-color: #f1f5f9; }
.border-slate-200 { border-color: var(--border-subtle); }
.border-slate-300 { border-color: #cbd5e1; }
.border-slate-700 { border-color: #334155; }
.border-slate-800 { border-color: #1e293b; }
.border-blue-200 { border-color: #bfdbfe; }
.border-indigo-200 { border-color: #c7d2fe; }
.border-emerald-200 { border-color: #a7f3d0; }
.border-white { border-color: #ffffff; }

/* Rounded */
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }

/* Shadows */
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.shadow-lg { box-shadow: var(--shadow-card); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }

/* --- Containers & Layout --- */
.max-w-7xl { max-width: 80rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-sm { max-width: 24rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }

.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-7 { padding-top: 1.75rem; padding-bottom: 1.75rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }

.pt-1 { padding-top: 0.25rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-3 { padding-top: 0.75rem; }
.pt-4 { padding-top: 1rem; }
.pt-14 { padding-top: 3.5rem; }
.pt-16 { padding-top: 4rem; }
.pt-20 { padding-top: 5rem; }
.pt-24 { padding-top: 6rem; }

.pb-2 { padding-bottom: 0.5rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-5 { padding-bottom: 1.25rem; }
.pb-6 { padding-bottom: 1.5rem; }

.p-2 { padding: 0.5rem; }
.p-2\.5 { padding: 0.625rem; }
.p-3 { padding: 0.75rem; }
.p-3\.5 { padding: 0.875rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-7 { padding: 1.75rem; }
.p-8 { padding: 2rem; }
.p-9 { padding: 2.25rem; }

/* Flex & Grid */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.grid { display: grid; }

.flex-col { flex-direction: column; }
.flex-grow { flex-grow: 1; }
.flex-shrink-0 { flex-shrink: 0; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-stretch { align-items: stretch; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }

.gap-1 { gap: 0.25rem; }
.gap-1\.5 { gap: 0.375rem; }
.gap-2 { gap: 0.5rem; }
.gap-2\.5 { gap: 0.625rem; }
.gap-3 { gap: 0.75rem; }
.gap-3\.5 { gap: 0.875rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-14 { gap: 3.5rem; }

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.order-1 { order: 1; }
.order-2 { order: 2; }

/* --- Responsive Breakpoints --- */
@media (min-width: 640px) {
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .sm\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .sm\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .sm\:pt-24 { padding-top: 6rem; }
  .sm\:p-4 { padding: 1rem; }
  .sm\:p-5 { padding: 1.25rem; }
  .sm\:p-6 { padding: 1.5rem; }
  .sm\:p-7 { padding: 1.75rem; }
  .sm\:p-8 { padding: 2rem; }
  .sm\:p-9 { padding: 2.25rem; }
  
  .sm\:h-20 { height: 5rem; }
  .sm\:w-11 { width: 2.75rem; }
  .sm\:h-11 { height: 2.75rem; }
  .sm\:w-20 { width: 5rem; }
  .sm\:h-20 { height: 5rem; }

  .sm\:flex-row { flex-direction: row; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sm\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .sm\:col-span-2 { grid-column: span 2 / span 2; }
  .sm\:inline-flex { display: inline-flex; }
  
  .sm\:text-xs { font-size: 0.75rem; line-height: 1rem; }
  .sm\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .sm\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .sm\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .sm\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .sm\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .sm\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .sm\:text-5xl { font-size: 3rem; line-height: 1; }
  
  .sm\:gap-3\.5 { gap: 0.875rem; }
  .sm\:gap-6 { gap: 1.5rem; }
  .sm\:gap-8 { gap: 2rem; }
}

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:pt-28 { padding-top: 7rem; }
  .lg\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .lg\:col-span-5 { grid-column: span 5 / span 5; }
  .lg\:col-span-6 { grid-column: span 6 / span 6; }
  .lg\:col-span-7 { grid-column: span 7 / span 7; }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  
  .lg\:text-left { text-align: left; }
  .lg\:justify-start { justify-content: flex-start; }
  .lg\:mx-0 { margin-left: 0; margin-right: 0; }
  
  .lg\:order-1 { order: 1; }
  .lg\:order-2 { order: 2; }
  
  .lg\:text-6xl { font-size: 3.75rem; }
  .lg\:text-5xl { font-size: 3rem; }
}

/* --- Mobile Specific Polish & Proportions (< 640px) --- */
@media (max-width: 639px) {
  section {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }

  #hero {
    padding-top: 1.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  /* Compact section headers on phone */
  .text-center.max-w-3xl.mx-auto.mb-16 {
    margin-bottom: 2rem !important;
  }

  /* Mobile button tap targets */
  .btn-primary, .btn-secondary {
    width: 100% !important;
    min-height: 48px !important;
    font-size: 0.9375rem !important;
    justify-content: center !important;
  }

  /* Prevent text overlapping in badges */
  .hero-badge {
    white-space: normal !important;
    text-align: left !important;
  }

  /* Touch input size on iOS / mobile */
  input[type="text"],
  input[type="email"],
  textarea {
    font-size: 16px !important; /* Prevents auto-zoom in mobile Safari */
  }

  /* Modal bottom-sheet behavior on small phones */
  .modal-backdrop > div {
    max-height: 92vh !important;
    overflow-y: auto !important;
    padding: 1.25rem !important;
    margin: 0.75rem !important;
  }
}

/* --- Interactive Components & Styling --- */
.header-nav {
  background-color: var(--nav-bg);
  border-color: var(--border-subtle);
}

.aspect-square {
  aspect-ratio: 1 / 1;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}

.transition-colors {
  transition-property: color, background-color, border-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}

/* Buttons */
button, a {
  cursor: pointer;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.btn-primary {
  transition: all 0.2s ease;
}
.btn-primary:hover {
  background-color: #172554;
  box-shadow: 0 10px 25px -5px rgba(30, 58, 138, 0.4);
}
.btn-primary:active {
  transform: scale(0.98);
}

.btn-secondary {
  transition: all 0.2s ease;
}
.btn-secondary:hover {
  border-color: #94a3b8;
  background-color: #f8fafc;
}
.btn-secondary:active {
  transform: scale(0.98);
}

/* Modal Backdrop */
.modal-backdrop.flex {
  display: flex;
}

/* Animations */
@keyframes pulseSlow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.96); }
}

.animate-pulse {
  animation: pulseSlow 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Dark Mode Overrides */
body.theme-dark .header-nav {
  background-color: rgba(15, 23, 42, 0.94);
  border-color: #1e293b;
}

body.theme-dark .bg-white {
  background-color: #131c31;
  border-color: #1e293b;
}

body.theme-dark .bg-slate-50 {
  background-color: #0b1120;
}

body.theme-dark .text-slate-900 {
  color: #f8fafc;
}

body.theme-dark .text-slate-800 {
  color: #e2e8f0;
}

body.theme-dark .text-slate-700 {
  color: #cbd5e1;
}

body.theme-dark .text-slate-600 {
  color: #94a3b8;
}

body.theme-dark .border-slate-200,
body.theme-dark .border-slate-100 {
  border-color: #1e293b;
}

body.theme-dark .bg-blue-50 {
  background-color: rgba(30, 58, 138, 0.25);
  color: #93c5fd;
}

body.theme-dark .bg-indigo-50 {
  background-color: rgba(67, 56, 202, 0.25);
  color: #c7d2fe;
}

body.theme-dark .bg-emerald-50 {
  background-color: rgba(5, 150, 105, 0.25);
  color: #6ee7b7;
}

body.theme-dark .text-blue-700,
body.theme-dark .text-blue-800,
body.theme-dark .text-blue-900 {
  color: #60a5fa;
}

body.theme-dark .modal-backdrop .bg-white {
  background-color: #1e293b;
  border-color: #334155;
}

/* --- Document Vault & Certificate Styles --- */
.certificate-view {
  background: radial-gradient(circle at center, #ffffff 0%, #f8fafc 100%);
  border: 4px double #cbd5e1;
  position: relative;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.03);
}

body.theme-dark .certificate-view {
  background: radial-gradient(circle at center, #1e293b 0%, #0f172a 100%);
  border-color: #334155;
}

.cert-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-25deg);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 900;
  color: rgba(30, 58, 138, 0.04);
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
  font-family: var(--font-serif);
  text-transform: uppercase;
}

body.theme-dark .cert-watermark {
  color: rgba(255, 255, 255, 0.03);
}

.cert-seal {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px dashed #3b82f6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1d4ed8;
  font-size: 10px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  background-color: rgba(239, 246, 255, 0.7);
}

body.theme-dark .cert-seal {
  border-color: #60a5fa;
  color: #93c5fd;
  background-color: rgba(30, 58, 138, 0.3);
}

/* Vault Tabs */
.vault-tab-active {
  background-color: #ffffff !important;
  color: #1e3a8a !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}

body.theme-dark .vault-tab-active {
  background-color: #1e293b !important;
  color: #93c5fd !important;
}

/* Timeline Left Margin & Pin on Mobile */
@media (max-width: 640px) {
  #timeline .border-l-2 {
    border-left-width: 2px;
    margin-left: 0.75rem;
    padding-left: 1.25rem;
  }
}

/* ==========================================================================
   PRINT STYLESHEET (PROFESSIONAL EXECUTIVE CV PDF)
   ========================================================================== */
@media print {
  @page {
    margin: 1.2cm;
    size: A4 portrait;
  }

  body {
    background-color: #ffffff !important;
    color: #1e293b !important;
    font-size: 11pt !important;
    line-height: 1.5 !important;
  }

  .header-nav,
  #theme-toggle,
  #mobile-menu-btn,
  #mobile-menu,
  .modal-backdrop,
  footer,
  button,
  .btn-primary,
  .btn-secondary,
  #contact-form,
  .ambient-glow,
  [title="Ganti atau Unggah Foto Asli Anda"] {
    display: none !important;
  }

  main {
    padding-top: 0 !important;
  }

  section {
    padding: 1rem 0 !important;
    border-bottom: 1px solid #cbd5e1 !important;
    page-break-inside: avoid;
  }

  #hero {
    border-bottom: 2px solid #0f172a !important;
    padding-bottom: 1.5rem !important;
  }

  h1 {
    font-size: 24pt !important;
    color: #0f172a !important;
  }

  h2 {
    font-size: 16pt !important;
    color: #1e3a8a !important;
    margin-bottom: 0.5rem !important;
  }

  h3 {
    font-size: 13pt !important;
    color: #0f172a !important;
  }

  .text-white {
    color: #0f172a !important;
  }

  .bg-slate-900,
  .bg-slate-950,
  .bg-blue-900 {
    background-color: #ffffff !important;
    color: #0f172a !important;
    border: 1px solid #e2e8f0 !important;
  }

  .shadow-xl, .shadow-2xl, .shadow-lg, .shadow-md {
    box-shadow: none !important;
  }

  table, dl {
    width: 100% !important;
    border-collapse: collapse !important;
  }

  img#main-profile-img {
    max-width: 130px !important;
    max-height: 130px !important;
    border: 1px solid #cbd5e1 !important;
  }
}
