/* ============================================================
   danangmedia-category.css
   Styles cho category.php service landing pages
   Auto-load via dm_page_assets() hoặc danangmedia_enqueue_styles()
   ============================================================ */

/* ══════════════════════════════════════
   MNM CATEGORY — Clean White Minimal
   Scoped prefix: .mnm_
══════════════════════════════════════ */
.mnm_ *, .mnm_ *::before, .mnm_ *::after,
.mnm_wrap *, .mnm_wrap *::before, .mnm_wrap *::after {
  box-sizing: border-box; margin: 0; padding: 0;
}
.mnm_wrap {
  --white:    #ffffff;
  --offwhite: #fafaf8;
  --bg:       #f5f4f1;
  --border:   #e9e7e2;
  --border2:  #d6d3cc;
  --txt:      #1c1c1c;
  --sub:      #4a4a4a;
  --muted:    #7a7a7a;
  --light:    #b0aba0;
  --gold:     #c8860a;
  --gold-bg:  #fdf6e8;
  --gold-bd:  #f0d090;
  --radius:   10px;
  --radius-s: 6px;
  --shadow:   0 1px 3px rgba(0,0,0,.05), 0 4px 12px rgba(0,0,0,.04);
  --shadow-h: 0 4px 20px rgba(0,0,0,.09);

  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Tahoma, sans-serif;
  color: var(--txt);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── HERO ── */
.mnm_hero {
  padding: 56px 6% 52px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 48px;
  align-items: center;
}
.mnm_eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .7rem; font-weight: 600;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.mnm_eyebrow-dot {
  width: 5px; height: 5px;
  background: var(--gold); border-radius: 50%;
  animation: mnm_pulse 2s infinite;
}
@keyframes mnm_pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.25;transform:scale(.5)} }

.mnm_h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -.5px; color: var(--txt);
  margin-bottom: 14px;
}
.mnm_h1 em { color: var(--gold); font-style: normal; }

.mnm_hero-desc {
  font-size: .98rem; color: var(--sub);
  max-width: 500px; line-height: 1.75;
  margin-bottom: 26px;
}
.mnm_hero-desc strong { color: var(--txt); font-weight: 600; }

.mnm_ctas { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.mnm_btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 20px; border-radius: var(--radius-s);
  font-size: .87rem; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
  font-family: inherit; transition: all .18s;
}
.mnm_btn-gold  { background: var(--gold); color: #fff; }
.mnm_btn-gold:hover { background: #a86c07; transform: translateY(-1px); color: #fff; }
.mnm_btn-line  { background: transparent; border: 1.5px solid var(--border2); color: var(--sub); }
.mnm_btn-line:hover { border-color: var(--gold); color: var(--gold); }

/* Stats bar */
.mnm_stats {
  display: flex; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.mnm_stat {
  flex: 1; padding: 14px 18px; text-align: center;
  border-right: 1px solid var(--border);
}
.mnm_stat:last-child { border-right: none; }
.mnm_stat-n { font-size: 1.45rem; font-weight: 800; color: var(--gold); line-height: 1; }
.mnm_stat-l  { font-size: .68rem; color: var(--muted); margin-top: 3px; letter-spacing: .2px; }

/* Hero right card */
.mnm_hero-side {
  background: var(--gold-bg);
  border: 1px solid var(--gold-bd);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
}
.mnm_hs-icon  { font-size: 2rem; margin-bottom: 8px; }
.mnm_hs-lbl   { font-size: .67rem; font-weight: 700; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 5px; }
.mnm_hs-num   { font-size: 1.55rem; font-weight: 800; color: var(--txt); line-height: 1.1; }
.mnm_hs-time  { font-size: .75rem; color: var(--muted); margin-top: 5px; }
.mnm_hs-btn   {
  display: block; margin-top: 16px;
  background: var(--gold); color: #fff;
  padding: 10px 16px; border-radius: var(--radius-s);
  font-size: .82rem; font-weight: 700;
  text-decoration: none; transition: background .18s;
}
.mnm_hs-btn:hover { background: #a86c07; color: #fff; }

/* ── SHARED ── */
.mnm_hr { height: 1px; background: var(--border); }

.mnm_s { padding: 56px 6%; background: var(--white); }
.mnm_s-off { background: var(--offwhite); }
.mnm_s-bg  { background: var(--bg); }

.mnm_s-hd { margin-bottom: 32px; }
.mnm_chip {
  display: inline-block; font-size: .67rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-bd);
  background: var(--gold-bg);
  padding: 3px 10px; border-radius: 20px;
  margin-bottom: 10px;
}
.mnm_h2 {
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 800; line-height: 1.15;
  letter-spacing: -.3px; color: var(--txt);
  margin-bottom: 7px;
}
.mnm_h2 em { color: var(--gold); font-style: normal; }
.mnm_h2-sub { font-size: .9rem; color: var(--muted); max-width: 480px; line-height: 1.65; }

/* ── SERVICE CARDS ── */
.mnm_svc-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 14px;
}
.mnm_svc {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px;
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.mnm_svc:hover {
  box-shadow: var(--shadow-h); border-color: var(--gold-bd);
  transform: translateY(-3px);
}
.mnm_svc-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 14px;
}
.mnm_svc-icon {
  font-size: 1.5rem; background: var(--gold-bg);
  width: 46px; height: 46px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
}
.mnm_svc-idx { font-size: .7rem; font-weight: 700; color: var(--light); letter-spacing: .5px; }
.mnm_svc-title { font-weight: 700; font-size: .92rem; color: var(--txt); margin-bottom: 7px; }
.mnm_svc-body  { font-size: .8rem; color: var(--muted); line-height: 1.65; }
.mnm_svc-price {
  display: inline-block; margin-top: 12px;
  font-size: .72rem; font-weight: 700; color: var(--gold);
  background: var(--gold-bg); border: 1px solid var(--gold-bd);
  padding: 3px 10px; border-radius: 20px;
}

/* ── PRICING ── */
.mnm_tbl-top {
  display: flex; justify-content: space-between;
  align-items: flex-end; flex-wrap: wrap; gap: 12px; margin-bottom: 18px;
}
.mnm_tbl-wrap {
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}
.mnm_tbl { width: 100%; border-collapse: collapse; background: var(--white); }
.mnm_tbl thead tr { background: var(--txt); }
.mnm_tbl thead th {
  padding: 12px 16px; text-align: left;
  font-size: .7rem; letter-spacing: 1.2px;
  text-transform: uppercase; color: #fff; font-weight: 600;
}
.mnm_tbl tbody tr { border-bottom: 1px solid var(--border); transition: background .15s; }
.mnm_tbl tbody tr:last-child { border-bottom: none; }
.mnm_tbl tbody tr:hover { background: var(--offwhite); }
.mnm_tbl td { padding: 13px 16px; font-size: .87rem; color: var(--txt); }
.mnm_tbl td:first-child { color: var(--light); font-size: .76rem; width: 38px; }
.mnm_price { color: var(--gold); font-weight: 700; }
.mnm_hot {
  background: #c0392b; color: #fff; font-size: .6rem; font-weight: 700;
  padding: 2px 7px; border-radius: 20px; margin-left: 6px;
}
.mnm_tbl-note { margin-top: 10px; font-size: .76rem; color: var(--muted); }
.mnm_tbl-note strong { color: var(--gold); }

/* ── HIGHLIGHTS ── */
.mnm_hl-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 12px;
}
.mnm_hl {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 20px;
  transition: box-shadow .18s, border-color .18s;
}
.mnm_hl:hover { box-shadow: var(--shadow-h); border-color: var(--gold-bd); }
.mnm_hl-icon {
  font-size: 1.2rem; background: var(--gold-bg);
  width: 40px; height: 40px; flex-shrink: 0; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
}
.mnm_hl-title { font-weight: 700; font-size: .88rem; margin-bottom: 4px; }
.mnm_hl-body  { font-size: .78rem; color: var(--muted); line-height: 1.6; }

/* ── PROCESS ── */
.mnm_proc {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; position: relative;
}
.mnm_proc::before {
  content: ''; position: absolute;
  top: 19px; left: 10%; right: 10%;
  height: 1px; background: var(--border);
}
.mnm_step { padding-right: 16px; position: relative; z-index: 1; }
.mnm_step-n {
  width: 38px; height: 38px; background: var(--gold); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .88rem; margin-bottom: 14px;
  box-shadow: 0 2px 8px rgba(200,134,10,.3);
}
.mnm_step-t { font-weight: 700; font-size: .88rem; color: var(--txt); margin-bottom: 5px; }
.mnm_step-b { font-size: .77rem; color: var(--muted); line-height: 1.65; }

/* ── POSTS ── */
.mnm_posts-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 18px;
}
.mnm_post {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.mnm_post:hover { box-shadow: var(--shadow-h); transform: translateY(-3px); }
.mnm_post-img img { width: 100%; height: 170px; object-fit: cover; display: block; }
.mnm_post-ph {
  height: 170px; background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; color: var(--border2);
}
.mnm_post-body { padding: 16px 18px; }
.mnm_post-title { font-weight: 700; font-size: .88rem; line-height: 1.45; margin-bottom: 7px; }
.mnm_post-title a { color: var(--txt); text-decoration: none; }
.mnm_post-title a:hover { color: var(--gold); }
.mnm_post-exc  { font-size: .77rem; color: var(--muted); line-height: 1.65; }
.mnm_post-more {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 10px; font-size: .76rem;
  color: var(--gold); font-weight: 600; text-decoration: none;
}

/* ── FAQ ── */
.mnm_faq-list { display: flex; flex-direction: column; gap: 8px; }
.mnm_faq-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: border-color .2s;
}
.mnm_faq-item.open { border-color: var(--gold-bd); }
.mnm_faq-q {
  width: 100%; background: none; border: none; color: var(--txt);
  text-align: left; padding: 16px 18px; font-family: inherit;
  font-size: .89rem; font-weight: 600; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; transition: color .15s;
}
.mnm_faq-q:hover { color: var(--gold); }
.mnm_faq-ico {
  flex-shrink: 0; width: 22px; height: 22px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700; color: var(--muted);
  transition: all .22s;
}
.mnm_faq-item.open .mnm_faq-ico {
  background: var(--gold); border-color: var(--gold);
  color: #fff; transform: rotate(45deg);
}
.mnm_faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .28s ease, padding .28s;
  padding: 0 18px; font-size: .84rem; color: var(--sub); line-height: 1.75;
}
.mnm_faq-item.open .mnm_faq-a { max-height: 200px; padding: 0 18px 16px; }

/* ── CONTACT ── */
.mnm_contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 44px; align-items: start;
}
.mnm_ci-list { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; }
.mnm_ci {
  display: flex; gap: 12px; align-items: center;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-s); padding: 12px 16px;
  transition: border-color .15s;
}
.mnm_ci:hover { border-color: var(--gold-bd); }
.mnm_ci-icon {
  font-size: 1rem; background: var(--gold-bg);
  width: 34px; height: 34px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 7px;
}
.mnm_ci-lbl { font-size: .64rem; color: var(--gold); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.mnm_ci-val { font-weight: 600; font-size: .86rem; color: var(--txt); }
.mnm_ci-val a { color: var(--txt); text-decoration: none; }
.mnm_ci-val a:hover { color: var(--gold); }

.mnm_form {
  background: var(--offwhite); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
}
.mnm_form-title { font-size: 1.1rem; font-weight: 800; color: var(--txt); margin-bottom: 18px; }
.mnm_fg { margin-bottom: 12px; }
.mnm_lbl {
  display: block; font-size: .66rem; color: var(--muted);
  font-weight: 600; letter-spacing: .5px;
  text-transform: uppercase; margin-bottom: 5px;
}
.mnm_inp, .mnm_sel, .mnm_ta {
  width: 100%; background: var(--white);
  border: 1.5px solid var(--border); color: var(--txt);
  padding: 9px 13px; border-radius: var(--radius-s);
  font-family: inherit; font-size: .87rem; outline: none;
  transition: border-color .18s, box-shadow .18s;
  -webkit-appearance: none;
}
.mnm_inp:focus, .mnm_ta:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,134,10,.1);
}
.mnm_ta { resize: vertical; min-height: 84px; }
.mnm_submit {
  width: 100%; background: var(--gold); color: #fff;
  border: none; padding: 12px; font-weight: 700;
  font-family: inherit; font-size: .88rem;
  cursor: pointer; border-radius: var(--radius-s);
  transition: all .18s; margin-top: 4px;
}
.mnm_submit:hover { background: #a86c07; transform: translateY(-1px); }
.mnm_form-foot {
  text-align: center; font-size: .71rem; color: var(--muted); margin-top: 10px;
}
.mnm_form-foot a { color: var(--gold); font-weight: 600; text-decoration: none; }

/* CF7 override */
.mnm_form .wpcf7-form input[type="text"],
.mnm_form .wpcf7-form input[type="tel"],
.mnm_form .wpcf7-form input[type="email"],
.mnm_form .wpcf7-form select,
.mnm_form .wpcf7-form textarea {
  width:100%!important; background:var(--white)!important;
  border:1.5px solid var(--border)!important; color:var(--txt)!important;
  padding:9px 13px!important; border-radius:var(--radius-s)!important;
  font-family:inherit!important; font-size:.87rem!important;
  outline:none!important; box-shadow:none!important; margin-bottom:12px!important;
}
.mnm_form .wpcf7-form input[type="submit"] {
  width:100%!important; background:var(--gold)!important; color:#fff!important;
  border:none!important; padding:12px!important; font-weight:700!important;
  border-radius:var(--radius-s)!important; font-family:inherit!important;
  font-size:.88rem!important; cursor:pointer!important;
}
.mnm_form .wpcf7-form p { margin:0!important; }

/* Map */
.mnm_map { margin-top: 16px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.mnm_map iframe { display: block; width: 100%; height: 250px; border: none; }

/* Pagination */
.mnm_pagi { margin-top: 28px; display: flex; justify-content: center; gap: 6px; flex-wrap: wrap; }
.mnm_pagi .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 36px; height: 36px; padding: 0 10px;
  border-radius: var(--radius-s); font-size: .82rem; font-weight: 600;
  text-decoration: none; border: 1.5px solid var(--border); color: var(--muted);
  transition: all .15s;
}
.mnm_pagi .page-numbers.current,
.mnm_pagi .page-numbers:hover {
  background: var(--gold); border-color: var(--gold); color: #fff;
}

/* Zalo float */
.mnm_zalo-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 9999;
}
.mnm_zalo-float a {
  display: flex; align-items: center; gap: 8px;
  background: #0068ff; color: #fff;
  padding: 10px 18px; border-radius: 50px;
  font-weight: 700; font-size: .8rem; text-decoration: none;
  box-shadow: 0 4px 18px rgba(0,104,255,.35);
  transition: all .2s;
}
.mnm_zalo-float a:hover { transform: translateY(-2px); box-shadow: 0 7px 26px rgba(0,104,255,.45); color: #fff; }
.mnm_zdot { width: 7px; height: 7px; background: #5af077; border-radius: 50%; animation: mnm_pulse 1.6s infinite; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .mnm_hero         { grid-template-columns: 1fr; }
  .mnm_hero-side    { display: none; }
  .mnm_svc-grid     { grid-template-columns: repeat(2,1fr); }
  .mnm_hl-grid      { grid-template-columns: 1fr; }
  .mnm_proc         { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .mnm_proc::before { display: none; }
  .mnm_contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .mnm_posts-grid   { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .mnm_hero       { padding: 36px 5% 32px; }
  .mnm_s          { padding: 40px 5%; }
  .mnm_h1         { font-size: 1.7rem; }
  .mnm_svc-grid, .mnm_posts-grid { grid-template-columns: 1fr; }
  .mnm_stats      { flex-direction: column; }
  .mnm_stat       { border-right: none; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; }
  .mnm_stat:last-child { border-bottom: none; }
  .mnm_tbl td, .mnm_tbl th { padding: 10px 12px; font-size: .82rem; }
}
