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

/* ============================================================
   TRINAM GROUP — Design System v2 (WMS Consulting rebrand)
   Palet: Merah (energi/ketegasan) + Charcoal (profesional)
   + Amber (aksen premium). Mobile-first — 80% traffic HP.
   ============================================================ */

:root {
  --red: #E22C24;
  --red-dark: #A81E19;
  --red-light: #FF6B57;
  --ink: #15171C;
  --ink-soft: #262A33;
  --ink-softer: #383D48;
  --amber: #F2A93B;
  --amber-dark: #C9820F;

  --bg: #F6F6F8;
  --surface: #FFFFFF;
  --surface-alt: #FBFBFC;
  --border: #E7E8EC;

  --text: #1E2128;
  --text-muted: #666B76;
  --text-faint: #9AA0AA;
  --on-dark: #FFFFFF;
  --on-dark-muted: rgba(255,255,255,0.72);
  --on-dark-faint: rgba(255,255,255,0.5);

  --success: #1F9D55;
  --whatsapp: #25D366;
  --whatsapp-dark: #1DA851;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 10px rgba(21,23,28,0.06);
  --shadow-md: 0 10px 30px rgba(21,23,28,0.10);
  --shadow-lg: 0 20px 50px rgba(21,23,28,0.18);
  --shadow-red: 0 12px 30px rgba(226,44,36,0.28);

  --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 1120px;
  --header-h: 68px;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html {
  scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 14px);
  overflow-x: hidden; width: 100%;
}
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  font-size: 15.5px;
  line-height: 1.65;
  overflow-x: hidden;
  width: 100%;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; }
h1, h2, h3, h4 { line-height: 1.25; font-weight: 700; }

/* ===== LANGUAGE TOGGLE LOGIC ===== */
[data-lang] { }
html:not([data-lang-mode="en"]) [data-lang="en"] { display: none !important; }
html[data-lang-mode="en"] [data-lang="id"] { display: none !important; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* ------------------------------------------------------------
   SITE HEADER (sticky, sama di semua halaman)
   ------------------------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: #15171C;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  height: var(--header-h);
}
.header-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 16px; height: 100%;
  display: flex; align-items: center; gap: 10px; width: 100%;
}
.brand { display: flex; align-items: center; gap: 8px; flex-shrink: 1; min-width: 0; }
.brand-logo { width: 34px; height: 34px; object-fit: contain; filter: drop-shadow(0 2px 6px rgba(226,44,36,0.35)); flex-shrink: 0; }
.brand-text { color: var(--on-dark); font-weight: 700; font-size: 14px; letter-spacing: 0.3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.brand-text b { color: var(--red-light); font-weight: 800; }

.main-nav {
  display: flex; align-items: center; gap: 4px; margin-left: auto;
}
.main-nav a {
  color: var(--on-dark-muted); font-size: 13.5px; font-weight: 500; padding: 9px 14px;
  border-radius: 999px; transition: color .15s, background .15s; white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active { color: var(--on-dark); background: rgba(255,255,255,0.08); }
.main-nav a.nav-cta { background: var(--red); color: #fff; font-weight: 600; }
.main-nav a.nav-cta:hover { background: var(--red-dark); }

.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.lang-switch {
  display: flex; background: rgba(255,255,255,0.08); border-radius: 999px; padding: 3px; gap: 2px;
}
.lang-btn {
  border: none; background: none; color: var(--on-dark-muted); font-size: 11.5px; font-weight: 700;
  padding: 5px 10px; border-radius: 999px; cursor: pointer; transition: all .15s; letter-spacing: 0.3px;
}
.lang-btn.active { background: var(--red); color: #fff; }

.nav-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 10px; border: none;
  background: rgba(255,255,255,0.08); color: #fff; font-size: 15px; cursor: pointer; flex-shrink: 0;
}

/* Lang switch di dalam drawer mobile (duplikat dari header-actions, tampil bergantian via media query) */
.nav-lang-mobile { display: none; }

/* ------------------------------------------------------------
   MOBILE NAV DRAWER — elemen TERPISAH, anak langsung <body>
   (BUKAN di dalam <header>) supaya posisinya benar-benar
   relatif ke viewport, bukan terjebak di dalam kotak header.
   ------------------------------------------------------------ */
.mobile-drawer {
  display: none;
}

@media (max-width: 899px) {
  /* Sembunyikan nav inline desktop sepenuhnya di HP - digantikan .mobile-drawer */
  .main-nav { display: none; }
  .header-actions > .lang-switch { display: none; }

  .mobile-drawer {
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
    background: var(--ink);
    padding: 18px 20px; transform: translateX(100%); transition: transform .28s ease;
    overflow-y: auto; z-index: 9999;
    max-width: 100vw;
  }
  .mobile-drawer.open { transform: translateX(0); }
  .mobile-drawer a {
    color: var(--on-dark-muted); font-size: 15.5px; font-weight: 500;
    padding: 14px 16px; border-radius: 12px; transition: color .15s, background .15s;
  }
  .mobile-drawer a:hover, .mobile-drawer a.active { color: var(--on-dark); background: rgba(255,255,255,0.08); }
  .mobile-drawer a.nav-cta { background: var(--red); color: #fff; font-weight: 600; margin-top: 10px; text-align: center; }

  .nav-lang-mobile {
    display: flex; justify-content: center; gap: 8px; margin-top: 18px;
    padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.1);
  }
  .nav-lang-mobile .lang-btn {
    background: rgba(255,255,255,0.08); padding: 8px 20px; font-size: 12.5px;
  }
  .nav-lang-mobile .lang-btn.active { background: var(--red); }
}
@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .brand-text { font-size: 16px; }
  .mobile-drawer { display: none !important; }
}

/* ------------------------------------------------------------
   HOME HERO
   ------------------------------------------------------------ */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 100% at 15% 0%, #2a0e0c 0%, var(--ink) 46%, var(--ink) 100%);
  color: var(--on-dark);
  padding: 56px 20px 74px;
  text-align: center;
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 82% 12%, rgba(226,44,36,0.35), transparent 45%),
    radial-gradient(circle at 8% 85%, rgba(242,169,59,0.16), transparent 50%);
}
.hero-inner { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(226,44,36,0.16); border: 1px solid rgba(226,44,36,0.4);
  color: #FFB3AC; font-size: 12px; font-weight: 700; letter-spacing: 0.6px;
  padding: 7px 16px; border-radius: 999px; margin-bottom: 22px; text-transform: uppercase;
}
.hero h1 { font-size: 30px; font-weight: 800; letter-spacing: -0.4px; margin-bottom: 16px; }
.hero h1 span { color: var(--red-light); }
.hero p.lead { font-size: 15.5px; color: var(--on-dark-muted); max-width: 560px; margin: 0 auto 30px; }
.hero-actions { display: flex; flex-direction: column; gap: 12px; align-items: stretch; max-width: 320px; margin: 0 auto; }
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 42px;
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 26px;
}
.hero-stat b { display: block; font-size: 22px; font-weight: 800; color: #fff; }
.hero-stat span { display: block; font-size: 10.5px; color: var(--on-dark-faint); margin-top: 4px; line-height: 1.35; text-transform: uppercase; letter-spacing: 0.3px; }

@media (min-width: 640px) {
  .hero { padding: 78px 20px 96px; }
  .hero h1 { font-size: 42px; }
  .hero p.lead { font-size: 17px; }
  .hero-actions { flex-direction: row; justify-content: center; max-width: none; }
  .hero-stat b { font-size: 26px; }
}
@media (min-width: 1024px) { .hero h1 { font-size: 50px; } }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 24px; border-radius: 999px; font-size: 14.5px; font-weight: 600;
  border: none; cursor: pointer; transition: transform .15s, box-shadow .15s, background .15s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: linear-gradient(135deg, var(--red), var(--red-dark)); color: #fff; box-shadow: var(--shadow-red); }
.btn-primary:hover { box-shadow: 0 16px 36px rgba(226,44,36,0.38); }
.btn-outline-light { background: rgba(255,255,255,0.06); color: #fff; border: 1.5px solid rgba(255,255,255,0.35); }
.btn-outline-light:hover { background: rgba(255,255,255,0.14); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--ink); }
.btn-whatsapp { background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark)); color: #fff; box-shadow: 0 10px 26px rgba(37,211,102,0.3); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 13px; }

/* ------------------------------------------------------------
   SECTION SCAFFOLDING
   ------------------------------------------------------------ */
.section { padding: 56px 0; }
.section-alt { background: var(--surface); }
.section-dark { background: var(--ink); color: var(--on-dark); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.eyebrow {
  display: inline-block; font-size: 11.5px; font-weight: 800; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--red); margin-bottom: 12px;
}
.section-dark .eyebrow { color: var(--red-light); }
.section-head h2 { font-size: 24px; letter-spacing: -0.3px; }
.section-head p { margin-top: 12px; color: var(--text-muted); font-size: 14.5px; }
.section-dark .section-head p { color: var(--on-dark-muted); }
@media (min-width: 640px) { .section { padding: 76px 0; } .section-head h2 { font-size: 32px; } }

/* ------------------------------------------------------------
   NARASI / ANALOGI (heartbeat pulse visual)
   ------------------------------------------------------------ */
.pulse-wrap { display: flex; justify-content: center; margin-bottom: 26px; }
.pulse-line {
  width: 100%; max-width: 420px; height: 54px;
}
.analogy-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
.analogy-card {
  background: var(--surface-alt); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 24px; display: flex; gap: 16px; align-items: flex-start;
}
.analogy-card .ai-icon {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 14px;
  background: linear-gradient(135deg, var(--red), var(--red-dark)); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 19px;
}
.analogy-card h4 { font-size: 15.5px; margin-bottom: 6px; }
.analogy-card p { font-size: 13.8px; color: var(--text-muted); }
.quote-block {
  border-left: 4px solid var(--red); padding: 4px 0 4px 20px; margin: 34px 0;
  font-size: 17px; font-weight: 600; font-style: italic; color: var(--ink);
  line-height: 1.55;
}
.section-dark .quote-block { color: #fff; border-left-color: var(--amber); }
@media (min-width: 720px) { .analogy-grid { grid-template-columns: repeat(3, 1fr); } }

/* ------------------------------------------------------------
   SERVICE / INFOGRAPHIC CARDS (3-tier)
   ------------------------------------------------------------ */
.service-grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
.service-card {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 30px 26px 26px; box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card .tier-no {
  position: absolute; top: -18px; left: 26px; width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg, var(--ink-soft), var(--ink)); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px;
  box-shadow: var(--shadow-sm);
}
.service-card.tier-3 .tier-no { background: linear-gradient(135deg, var(--red), var(--red-dark)); }
.service-card .sc-icon {
  width: 54px; height: 54px; border-radius: 16px; margin-bottom: 16px; margin-top: 8px;
  background: linear-gradient(135deg, #fdeceb, #fff); color: var(--red);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  border: 1px solid #fbdad7;
}
.service-card h3 { font-size: 17.5px; margin-bottom: 6px; }
.service-card .sc-tag { font-size: 11.5px; font-weight: 700; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.service-card p.sc-desc { font-size: 13.8px; color: var(--text-muted); margin-bottom: 16px; }
.sc-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; flex: 1; }
.sc-list li { font-size: 13.3px; color: var(--text); display: flex; gap: 8px; align-items: flex-start; }
.sc-list li i { color: var(--red); font-size: 11px; margin-top: 4px; flex-shrink: 0; }
.service-card .btn { align-self: stretch; }
@media (min-width: 720px) { .service-grid { grid-template-columns: repeat(3, 1fr); } }

/* ------------------------------------------------------------
   PROCESS / TIMELINE STEPS
   ------------------------------------------------------------ */
.steps { display: flex; flex-direction: column; gap: 0; }
.step { display: flex; gap: 18px; position: relative; padding-bottom: 36px; }
.step:last-child { padding-bottom: 0; }
.step::before {
  content: ""; position: absolute; left: 21px; top: 46px; bottom: 0; width: 2px;
  background: repeating-linear-gradient(to bottom, var(--border) 0 6px, transparent 6px 12px);
}
.step:last-child::before { display: none; }
.step-dot {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dark)); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px;
  box-shadow: var(--shadow-red); z-index: 1;
}
.step-body h4 { font-size: 15px; margin-bottom: 5px; }
.step-body p { font-size: 13.5px; color: var(--text-muted); }

/* ------------------------------------------------------------
   CREDENTIALS / STATS
   ------------------------------------------------------------ */
.cred-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.cred-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md); padding: 20px 16px; text-align: center;
}
.cred-card i { font-size: 22px; color: var(--amber); margin-bottom: 10px; }
.cred-card b { display: block; font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 3px; }
.cred-card span { font-size: 11.5px; color: var(--on-dark-muted); line-height: 1.3; display: block; }
.tool-chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 26px; }
.tool-chip {
  font-size: 12px; font-weight: 600; color: var(--on-dark-muted); background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12); padding: 7px 14px; border-radius: 999px;
}
@media (min-width: 640px) { .cred-grid { grid-template-columns: repeat(4, 1fr); } }

/* ------------------------------------------------------------
   CTA BANNER
   ------------------------------------------------------------ */
.cta-banner {
  background: linear-gradient(120deg, var(--red-dark), var(--red) 60%, #ff6a4d);
  border-radius: var(--radius-lg); padding: 38px 26px; text-align: center; color: #fff;
  margin: 0 20px; position: relative; overflow: hidden;
}
.cta-banner::after {
  content: ""; position: absolute; right: -40px; top: -40px; width: 160px; height: 160px;
  border-radius: 50%; background: rgba(255,255,255,0.12);
}
.cta-banner h3 { font-size: 21px; margin-bottom: 10px; position: relative; }
.cta-banner p { font-size: 13.8px; color: rgba(255,255,255,0.85); margin-bottom: 22px; position: relative; max-width: 460px; margin-left: auto; margin-right: auto; }
.cta-banner .btn { position: relative; }
@media (min-width: 640px) { .cta-banner { padding: 50px 40px; } .cta-banner h3 { font-size: 26px; } }

/* ------------------------------------------------------------
   INNER PAGE HERO (About / Services / Contact)
   ------------------------------------------------------------ */
.page-hero {
  background: linear-gradient(150deg, var(--ink) 0%, #241012 120%);
  color: #fff; padding: 40px 20px 48px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 85% 0%, rgba(226,44,36,0.3), transparent 55%);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.page-hero .eyebrow { color: var(--red-light); }
.page-hero h1 { font-size: 25px; margin-bottom: 10px; }
.page-hero p { font-size: 14px; color: var(--on-dark-muted); }
@media (min-width: 640px) { .page-hero h1 { font-size: 34px; } .page-hero { padding: 56px 20px 64px; } }

/* ===== GENERIC CONTENT BLOCKS ===== */
.prose { font-size: 14.5px; color: var(--text-muted); }
.prose p + p { margin-top: 14px; }
.two-col { display: grid; gap: 26px; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 860px) { .two-col { grid-template-columns: 1.1fr 0.9fr; gap: 46px; } }

.icon-feature { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.icon-feature .if-ico {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 12px; background: #fdeceb; color: var(--red);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.icon-feature h4 { font-size: 14.5px; margin-bottom: 4px; }
.icon-feature p { font-size: 13.3px; color: var(--text-muted); }

.badge-pill {
  display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 700;
  background: #fdeceb; color: var(--red-dark); padding: 6px 13px; border-radius: 999px; margin-bottom: 14px;
}

/* Comparison mini-table (perbandingan 3 tingkat, dipakai di detail page) */
.compare-note {
  background: var(--surface-alt); border: 1px dashed var(--border); border-radius: var(--radius-md);
  padding: 18px 20px; font-size: 13.3px; color: var(--text-muted); margin-top: 10px;
}
.compare-note b { color: var(--text); }

/* ===== ART / DECORATIVE (pengganti alamat kantor) ===== */
.deco-panel {
  background: linear-gradient(135deg, #fdeceb, #fff5eb);
  border: 1px solid #fbdad7; border-radius: var(--radius-lg);
  padding: 28px 22px; text-align: center;
}
.deco-panel .deco-icon {
  width: 60px; height: 60px; border-radius: 18px; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--red), var(--red-dark)); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 24px; box-shadow: var(--shadow-red);
}
.deco-panel h4 { font-size: 15.5px; margin-bottom: 8px; }
.deco-panel p { font-size: 13.3px; color: var(--text-muted); }

/* ------------------------------------------------------------
   CONTACT PAGE
   ------------------------------------------------------------ */
.wa-card {
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark)); color: #fff;
  border-radius: var(--radius-lg); padding: 26px 22px; text-align: center; margin-bottom: 20px;
  box-shadow: 0 14px 32px rgba(37,211,102,0.25);
}
.wa-card h3 { font-size: 17px; margin-bottom: 6px; }
.wa-card p { font-size: 13.3px; color: rgba(255,255,255,0.88); margin-bottom: 18px; }
.wa-btn {
  display: inline-flex; align-items: center; gap: 9px; background: #fff; color: var(--whatsapp-dark);
  font-weight: 700; font-size: 14.5px; padding: 13px 26px; border-radius: 999px;
}

.contact-info-card, .form-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px 22px; margin-bottom: 20px; box-shadow: var(--shadow-sm);
}
.card-title { font-size: 15px; margin-bottom: 18px; display: flex; align-items: center; gap: 9px; }
.card-title i { color: var(--red); }
.contact-row { display: flex; gap: 14px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--border); }
.contact-row:last-child { border-bottom: none; padding-bottom: 0; }
.ci-icon {
  width: 38px; height: 38px; border-radius: 11px; background: #fdeceb; color: var(--red);
  display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0;
}
.ci-text strong { display: block; font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.4px; color: var(--text-faint); margin-bottom: 3px; }
.ci-text span, .ci-text a span { font-size: 14px; color: var(--text); font-weight: 500; }
.ci-text a:hover span { color: var(--red); }

.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12.5px; font-weight: 600; color: var(--text-muted); margin-bottom: 7px; }
.form-group .req { color: var(--red); }
.form-group input, .form-group textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font); font-size: 14px; color: var(--text); background: var(--surface-alt);
  transition: border-color .15s, background .15s;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--red); background: #fff; }
.form-group textarea { min-height: 110px; resize: vertical; }
.submit-btn {
  width: 100%; background: linear-gradient(135deg, var(--red), var(--red-dark)); color: #fff;
  border: none; padding: 15px; border-radius: 999px; font-size: 14.5px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 9px; cursor: pointer;
  box-shadow: var(--shadow-red);
}
.submit-btn:disabled { opacity: 0.7; cursor: not-allowed; }

.alert { padding: 12px 16px; border-radius: var(--radius-sm); font-size: 13px; margin-bottom: 16px; font-weight: 500; }
.alert.success { background: #e5f7ec; color: var(--success); }
.alert.error { background: #fdeceb; color: var(--red-dark); }

/* ------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------ */
.footer { background: var(--ink); color: var(--on-dark-muted); padding: 44px 20px 26px; text-align: center; }
.footer-brand-row { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 18px; }
.footer-brand-row img { width: 32px; height: 32px; object-fit: contain; }
.footer-brand-row span { color: #fff; font-weight: 700; font-size: 15px; letter-spacing: 0.4px; }
.footer-tagline { font-size: 12.5px; max-width: 380px; margin: 0 auto 22px; line-height: 1.6; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 4px; margin-bottom: 22px; }
.footer-nav a { font-size: 12.8px; padding: 6px 12px; border-radius: 999px; transition: background .15s, color .15s; }
.footer-nav a:hover { background: rgba(255,255,255,0.08); color: #fff; }
.footer-divider { height: 1px; background: rgba(255,255,255,0.1); max-width: 200px; margin: 0 auto 18px; }
.footer-copy { font-size: 11.5px; color: var(--on-dark-faint); }

/* ===== EMPTY / MISC ===== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (min-width: 640px) {
  .contact-info-card, .form-card, .wa-card { padding: 30px 28px; }
}
@media (min-width: 720px) {
  .two-col.contact-layout { grid-template-columns: 0.9fr 1.1fr; }
}
