/* ================================================
   MEGA SUKSES V2 — GRADIENT LAYOUT STYLESHEET
   Brand: Red #C41230 → #8B0A1E | Dark #111111
   ================================================ */

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', sans-serif;
  color: #444;
  background: #fff;
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.7;
}
a { text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; padding: 0; margin: 0; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.25; color: #1E1E1E; }
h1 { font-size: clamp(32px, 5vw, 60px); }
h2 { font-size: clamp(26px, 4vw, 44px); }
h3 { font-size: clamp(22px, 3vw, 34px); }
p { margin-bottom: 0; }

/* ---- GRADIENT UTILITIES ---- */
.text-grad {
  background: linear-gradient(135deg, #C41230 0%, #ff6b35 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  background: linear-gradient(135deg, #C41230, #e8404b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: #1E1E1E;
  margin-bottom: 14px;
}
.section-title.light { color: #fff; }
.section-subtitle { font-size: 15px; color: #777; line-height: 1.75; max-width: 580px; }
.section-subtitle.light { color: rgba(255,255,255,0.6); }

/* ---- BUTTONS ---- */
.btn-ms-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #C41230, #8B0A1E);
  color: #fff;
  padding: 13px 30px; border-radius: 50px;
  font-weight: 600; font-size: 14px; border: none;
  transition: all .3s;
  box-shadow: 0 4px 20px rgba(196,18,48,.35);
}
.btn-ms-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196,18,48,.5);
  color: #fff;
}

.btn-ms-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff;
  padding: 13px 30px; border-radius: 50px;
  font-weight: 600; font-size: 14px;
  border: 2px solid rgba(255,255,255,.4);
  transition: all .3s;
}
.btn-ms-outline:hover { background: rgba(255,255,255,.1); color: #fff; }

.btn-ms-red-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #C41230;
  padding: 12px 28px; border-radius: 50px;
  font-weight: 600; font-size: 14px;
  border: 2px solid #C41230;
  transition: all .3s;
}
.btn-ms-red-outline:hover {
  background: linear-gradient(135deg, #C41230, #8B0A1E);
  color: #fff; border-color: transparent;
  box-shadow: 0 4px 20px rgba(196,18,48,.35);
}

.btn-ms-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: #C41230;
  padding: 13px 30px; border-radius: 50px;
  font-weight: 600; font-size: 14px; border: none;
  transition: all .3s;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.btn-ms-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.2);
  color: #C41230;
}

/* ================================================
   HEADER / NAV
   ================================================ */
.ms-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  transition: background .35s, box-shadow .35s;
  background: transparent;
  padding-top: env(safe-area-inset-top, 0px);
}
.ms-header.scrolled {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,.1);
}

.ms-header .navbar { padding: 20px 0; }
.ms-header.scrolled .navbar { padding: 14px 0; }
.ms-header .navbar-brand img { height: 46px; }

.ms-header .nav-link {
  color: rgba(255,255,255,.85) !important;
  font-weight: 500; font-size: 14px;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: all .25s;
}
.ms-header.scrolled .nav-link { color: #333 !important; }
/* Transparent header (over coloured hero) — keep everything white */
.ms-header:not(.scrolled) .nav-link:hover { background: rgba(255,255,255,.12); }
.ms-header:not(.scrolled) .nav-link.active-nav {
  color: #fff !important;
  background: rgba(255,255,255,.18);
}

/* Scrolled (white) header — use brand red */
.ms-header.scrolled .nav-link:hover,
.ms-header.scrolled .nav-link.active-nav {
  color: #C41230 !important;
  background: rgba(196,18,48,.06);
}

.ms-header .dropdown-menu {
  border: none;
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(0,0,0,.12);
  padding: 10px;
  min-width: 240px;
  animation: fadeDown .2s ease;
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ms-header .dropdown-item {
  padding: 9px 14px; border-radius: 8px;
  font-size: 14px; color: #444; font-weight: 500;
  transition: .2s;
}
.ms-header .dropdown-item:hover {
  background: linear-gradient(135deg, #fdf0f2, #fff4f4);
  color: #C41230;
}
.ms-dropdown-icon { font-size: 10px; margin-left: 3px; }
.ms-header .dropdown-toggle::after { display: none; }

.btn-wa-header {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #C41230, #8B0A1E);
  color: #fff; padding: 10px 22px;
  border-radius: 50px; font-weight: 600; font-size: 14px;
  transition: all .3s;
  box-shadow: 0 3px 14px rgba(196,18,48,.3);
  white-space: nowrap;
}
.btn-wa-header:hover {
  transform: translateY(-1px);
  color: #fff;
  box-shadow: 0 5px 22px rgba(196,18,48,.45);
}

.navbar-toggler { border: none; outline: none !important; box-shadow: none !important; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23ffffff' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.ms-header.scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23333333' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* ================================================
   HERO — Centered text + image card below
   ================================================ */
.ms-hero {
  background: linear-gradient(135deg, #C41230 0%, #8B0A1E 55%, #5a0510 100%);
  padding-top: 130px;
  overflow: hidden;
  position: relative;
}
/* Dark band at the top (behind navbar) + depth vignette at bottom */
.ms-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.7) 0%, transparent 18%),
    radial-gradient(ellipse at 50% 100%, rgba(60,0,10,.5) 0%, transparent 65%);
  pointer-events: none;
}
/* Same plus/cross pattern as the benefits section */
.ms-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.045'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.ms-hero-content {
  position: relative; z-index: 1;
}

/* Centered text block */
.hero-center-block {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding-bottom: 52px;
}

.ms-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.92);
  padding: 7px 18px; border-radius: 50px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 28px;
}

.ms-hero h1 {
  color: #fff;
  font-size: clamp(40px, 6.5vw, 74px);
  font-weight: 800;
  line-height: 1.07;
  margin-bottom: 22px;
}
.ms-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #fff 0%, #A8A9AD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  color: rgba(255,255,255,.65);
  font-size: 17px; line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 38px;
}

.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  justify-content: center;
}

/* Hero image card */
.hero-img-card {
  position: relative;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  box-shadow: 0 -16px 60px rgba(60,3,14,.45);
}
.hero-img-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: bottom;
  display: block;
}
/* Gradient fade on image to blend with red hero bg */
.hero-img-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(70,4,16,.85) 0%, transparent 55%);
  z-index: 1;
}

/* Stats bar overlaid at the bottom of the image */
.hero-stats-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  background: rgba(60,3,14,.82);
  border-top: 1px solid rgba(255,255,255,.1);
}
.hs-item {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding: 20px 12px;
  border-right: 1px solid rgba(255,255,255,.07);
}
.hs-item:last-child { border-right: none; }
.hs-item strong {
  font-size: 26px; font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #A8A9AD 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1; margin-bottom: 5px;
}
.hs-item small {
  font-size: 12px; color: rgba(255,255,255,.45);
  letter-spacing: .4px;
}


/* ================================================
   ABOUT HOME
   ================================================ */
.ms-about-home {
  padding: 100px 0;
  background: linear-gradient(180deg, #fff 0%, #fdf6f7 100%);
}
.about-stat-cards {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  margin-bottom: 64px;
}
.asc-card {
  padding: 30px 26px;
  border-radius: 18px;
  background: linear-gradient(135deg, #C41230 0%, #8B0A1E 100%);
  color: #fff;
  position: relative; overflow: hidden;
}
.asc-card::before {
  content: '';
  position: absolute; top: -50px; right: -50px;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
}
.asc-card:nth-child(even) {
  background: linear-gradient(135deg, #888c91 0%, #A8A9AD 100%);
}
.asc-card:nth-child(even) h3 { color: #1a1a1a; }
.asc-card:nth-child(even) h6 { color: rgba(15,15,15,.7); }
.asc-card:nth-child(even) p  { color: rgba(15,15,15,.6); }
.asc-card h3 {
  color: #fff; font-size: clamp(24px,3vw,34px);
  margin-bottom: 6px;
}
.asc-card h6 {
  color: rgba(255,255,255,.8); font-size: 13px;
  font-weight: 600; margin-bottom: 8px;
}
.asc-card p { color: rgba(255,255,255,.6); font-size: 13px; line-height: 1.65; }

.about-main-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text-block .section-title { margin-bottom: 20px; }
.about-text-block p { color: #666; font-size: 15px; line-height: 1.8; }

.about-img-block { position: relative; }
.about-img-block img {
  width: 100%; border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
}

@media (max-width: 991px) {
  .about-stat-cards { grid-template-columns: repeat(2,1fr); }
  .about-main-row { grid-template-columns: 1fr; gap: 40px; }
}

/* ================================================
   PROCESS
   ================================================ */
.ms-process {
  padding: 100px 0;
  background: linear-gradient(135deg, #C41230 0%, #8B0A1E 55%, #5a0510 100%);
  position: relative; overflow: hidden;
}
.ms-process::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(0,0,0,.18) 0%, transparent 65%);
}
.ms-process .text-center { position: relative; z-index: 1; }
.ms-process .section-title { color: #fff; }
.ms-process .section-subtitle { color: rgba(255,255,255,.5); }
.ms-process .section-label {
  background: linear-gradient(135deg, rgba(255,255,255,.6), rgba(255,255,255,.35));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0;
  position: relative; z-index: 1;
  margin-top: 60px;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(16.67% + 32px);
  right: calc(16.67% + 32px);
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,.5), rgba(255,255,255,.15));
  z-index: 0;
}
.process-item {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding: 0 28px; position: relative; z-index: 1;
}
.process-icon-wrap {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C41230, #8B0A1E);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: #fff;
  margin: 0 auto 24px;
  box-shadow: 0 8px 30px rgba(196,18,48,.45);
  position: relative;
}
.process-num-badge {
  position: absolute; top: -4px; right: -4px;
  width: 26px; height: 26px;
  background: linear-gradient(135deg, #C8C9CD, #A8A9AD);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: #1a1a1a;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.process-item h5 { color: #fff; font-size: 17px; font-weight: 700; margin-bottom: 12px; }
.process-item p { color: rgba(255,255,255,.5); font-size: 14px; line-height: 1.7; }


/* ================================================
   SERVICES HOME
   ================================================ */
.ms-services-home {
  padding: 100px 0;
  background: #fff;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin-top: 50px;
}
.svc-card-v2 {
  padding: 32px 28px; border-radius: 20px;
  background: #fff;
  border: 1.5px solid #f0f0f5;
  transition: all .32s;
  position: relative; overflow: hidden;
}
.svc-card-v2::before {
  content: ''; position: absolute; inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, #C41230 0%, #8B0A1E 100%);
  opacity: 0; transition: opacity .32s;
  z-index: 0;
}
.svc-card-v2:hover::before { opacity: 1; }
.svc-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(196,18,48,.25);
  border-color: transparent;
}
.svc-card-v2 > * { position: relative; z-index: 1; }

.svc-icon-wrap {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, #fdf0f2, #fff4f4);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #C41230;
  margin-bottom: 20px;
  transition: all .32s;
}
.svc-card-v2:hover .svc-icon-wrap { background: rgba(255,255,255,.15); color: #fff; }

.svc-card-v2 h5 {
  font-size: 17px; font-weight: 700; color: #1E1E1E;
  margin-bottom: 10px; transition: color .32s;
}
.svc-card-v2:hover h5 { color: #fff; }

.svc-card-v2 p { color: #888; font-size: 14px; line-height: 1.7; margin-bottom: 18px; transition: color .32s; }
.svc-card-v2:hover p { color: rgba(255,255,255,.75); }

.svc-link-v2 {
  display: inline-flex; align-items: center; gap: 6px;
  color: #C41230; font-weight: 600; font-size: 13px;
  transition: all .32s;
}
.svc-link-v2:hover { gap: 10px; }
.svc-card-v2:hover .svc-link-v2 { color: rgba(255,255,255,.9); }

@media (max-width: 991px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 575px) { .services-grid { grid-template-columns: 1fr; } }

/* ================================================
   BENEFITS (red gradient bg)
   ================================================ */
.ms-benefits {
  padding: 100px 0;
  background: linear-gradient(135deg, #C41230 0%, #8B0A1E 55%, #5a0510 100%);
  position: relative; overflow: hidden;
}
.ms-benefits::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.ms-benefits .section-label {
  background: linear-gradient(135deg, rgba(255,255,255,.75), rgba(255,255,255,.45));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ms-benefits .section-title { color: #fff; }

.benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px; align-items: center;
  position: relative; z-index: 1;
}
.benefit-img-side { position: relative; }
.benefit-img-side img {
  width: 100%; border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,.3);
}

.benefit-list { display: flex; flex-direction: column; gap: 28px; }
.ben-item { display: flex; gap: 20px; align-items: flex-start; }
.ben-icon {
  width: 50px; height: 50px; flex-shrink: 0;
  border-radius: 14px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: #fff;
  transition: background .25s;
}
.ben-item:hover .ben-icon { background: rgba(255,255,255,.2); }
.ben-text h5 { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.ben-text p { color: rgba(255,255,255,.68); font-size: 14px; line-height: 1.7; }
.ms-benefits .btn-ms-white { margin-top: 16px; }

@media (max-width: 991px) { .benefits-layout { grid-template-columns: 1fr; gap: 48px; } }

/* ================================================
   TESTIMONIALS
   ================================================ */
.ms-testimonials {
  padding: 100px 0;
  background: linear-gradient(180deg, #fdf6f7 0%, #fff 100%);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px; margin-top: 50px;
}
.testi-card-v2 {
  padding: 36px 30px; border-radius: 20px;
  background: #fff;
  box-shadow: 0 4px 30px rgba(0,0,0,.07);
  border: 1.5px solid #f5f5f5;
  position: relative; overflow: hidden;
  transition: all .3s;
}
.testi-card-v2::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #C41230, #8B0A1E);
  opacity: 0; transition: .3s;
}
.testi-card-v2:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,.1);
}
.testi-card-v2:hover::after { opacity: 1; }

.quote-icon {
  font-size: 52px; line-height: 1;
  background: linear-gradient(135deg, #C41230, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: Georgia, serif;
  margin-bottom: 16px;
}
.testi-text { color: #555; font-size: 14px; line-height: 1.8; margin-bottom: 22px; }
.testi-stars { color: #f5a623; font-size: 14px; margin-bottom: 10px; }
.testi-author { font-size: 13px; font-weight: 600; color: #aaa; }

@media (max-width: 767px) { .testi-grid { grid-template-columns: 1fr; } }

/* ================================================
   CTA HOMEPAGE
   ================================================ */
.ms-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #C41230 0%, #8B0A1E 55%, #5a0510 100%);
  text-align: center;
  position: relative; overflow: hidden;
}
.ms-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,0,0,.2) 0%, transparent 60%);
}
.ms-cta > .container { position: relative; z-index: 1; }
.ms-cta h2 { color: #fff; margin-bottom: 16px; }
.ms-cta p { color: rgba(255,255,255,.6); margin-bottom: 36px; font-size: 16px; }

/* ================================================
   PAGE BANNER (inner pages)
   ================================================ */
.ms-page-banner {
  padding: 150px 0 72px;
  background: linear-gradient(135deg, #C41230 0%, #8B0A1E 55%, #5a0510 100%);
  position: relative; overflow: hidden;
}
.ms-page-banner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.7) 0%, transparent 22%),
    radial-gradient(ellipse at 90% 50%, rgba(0,0,0,.2) 0%, transparent 55%);
}
.ms-page-banner > .container { position: relative; z-index: 1; }
.ms-page-banner h1 { color: #fff; margin-bottom: 16px; }
.ms-page-banner .banner-desc {
  color: rgba(255,255,255,.62);
  max-width: 600px; font-size: 16px; line-height: 1.8;
}
.ms-page-banner .breadcrumb { margin-bottom: 20px; }
.ms-page-banner .breadcrumb-item a {
  color: rgba(255,255,255,.55); font-size: 13px; transition: .2s;
}
.ms-page-banner .breadcrumb-item a:hover { color: #C41230; }
.ms-page-banner .breadcrumb-item.active { color: rgba(255,255,255,.85); font-size: 13px; }
.ms-page-banner .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.3); }

/* ================================================
   ABOUT PAGE
   ================================================ */
.ms-about-page { padding: 100px 0; background: #fff; }

.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: 20px; box-shadow: 0 20px 60px rgba(0,0,0,.1); }

.about-img-badge {
  position: absolute; bottom: 28px; left: -22px;
  background: linear-gradient(135deg, #C41230, #8B0A1E);
  color: #fff; padding: 18px 24px; border-radius: 16px;
  box-shadow: 0 10px 30px rgba(196,18,48,.4);
}
.about-img-badge .years { font-size: 30px; font-weight: 800; line-height: 1; }
.about-img-badge .years-label { font-size: 12px; opacity: .8; margin-top: 2px; }

.about-stat-mini {
  padding: 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fdf0f2, #fff8f8);
  border-left: 4px solid #C41230;
}
.about-stat-mini .num {
  font-size: 30px; font-weight: 800;
  background: linear-gradient(135deg, #C41230, #8B0A1E);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1; margin-bottom: 4px;
}
.about-stat-mini .lbl { font-size: 13px; color: #666; }

/* ================================================
   WHY SECTION
   ================================================ */
.ms-why-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #fdf6f7 0%, #fff 100%);
}
.why-accordion-item {
  border: 1.5px solid #f0f0f5;
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.why-accordion-item.open {
  border-color: #C41230;
  box-shadow: 0 4px 20px rgba(196,18,48,.08);
}
.why-toggle {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px; cursor: pointer; background: #fff;
  gap: 12px;
}
.why-accordion-item.open .why-toggle {
  background: linear-gradient(135deg, #C41230, #8B0A1E);
}
.why-toggle h5 {
  font-size: 15px; color: #1E1E1E; margin: 0;
  transition: color .3s;
}
.why-accordion-item.open .why-toggle h5 { color: #fff; }
.toggle-icon { color: #C41230; font-size: 14px; transition: transform .3s, color .3s; flex-shrink: 0; }
.why-accordion-item.open .toggle-icon { color: #fff; transform: rotate(45deg); }
.why-body { padding: 0 22px; max-height: 0; overflow: hidden; transition: all .35s; }
.why-accordion-item.open .why-body { padding: 16px 22px; max-height: 300px; }
.why-body p { color: #666; font-size: 14px; line-height: 1.75; }

/* ================================================
   CTA ABOUT
   ================================================ */
.ms-cta-about { padding: 0 0 80px; background: #fff; }
.cta-about-box {
  background: linear-gradient(135deg, #C41230 0%, #8B0A1E 55%, #5a0510 100%);
  border-radius: 22px; padding: 50px 52px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-about-box::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 0% 50%, rgba(196,18,48,.4) 0%, transparent 55%);
}
.cta-about-box > * { position: relative; z-index: 1; }
.cta-about-box h2 { color: #fff; margin-bottom: 8px; font-size: clamp(20px,3vw,30px); }
.cta-about-box p { color: rgba(255,255,255,.6); }

/* ================================================
   CONTACT
   ================================================ */
.ms-contact { padding: 80px 0; background: #fff; }
.contact-layout {
  border-radius: 22px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.1);
}
.contact-building-wrap { height: 100%; min-height: 420px; }
.contact-building-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

.contact-info-wrap {
  padding: 60px 50px;
  background: linear-gradient(160deg, #C41230 0%, #8B0A1E 55%, #5a0510 100%);
  height: 100%;
}
.contact-info-wrap .section-label {
  background: linear-gradient(135deg, rgba(255,255,255,.65), rgba(255,255,255,.35));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contact-info-wrap .section-title { color: #fff; }

.contact-detail-row {
  display: flex; gap: 20px; align-items: flex-start;
  margin-bottom: 32px;
}
.ci-icon {
  width: 50px; height: 50px; flex-shrink: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #C41230, #8B0A1E);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: #fff;
  box-shadow: 0 4px 16px rgba(196,18,48,.35);
}
.contact-detail-row h5 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.contact-detail-row p { color: rgba(255,255,255,.58); font-size: 14px; line-height: 1.65; }

/* ================================================
   SERVICES PAGE
   ================================================ */
.ms-service-page { padding: 80px 0; background: #fff; }

.feature-grid-card {
  padding: 32px 24px; border-radius: 18px;
  background: #fff; border: 1.5px solid #f0f0f5;
  text-align: center; height: 100%;
  transition: all .32s; position: relative; overflow: hidden;
}
.feature-grid-card::before {
  content: ''; position: absolute; inset: 0; border-radius: 18px;
  background: linear-gradient(135deg, #C41230, #8B0A1E);
  opacity: 0; transition: opacity .32s;
}
.feature-grid-card:hover::before { opacity: 1; }
.feature-grid-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(196,18,48,.25);
  border-color: transparent;
}
.feature-grid-card > * { position: relative; z-index: 1; }

.feature-grid-card img { width: 80px; height: 80px; object-fit: cover; border-radius: 10px; margin: 0 auto 16px; }
.feat-icon { font-size: 32px; color: #C41230; display: block; margin-bottom: 14px; transition: color .32s; }
.feature-grid-card:hover .feat-icon { color: #fff; }
.feat-title { font-size: 15px; font-weight: 700; color: #1E1E1E; margin-bottom: 10px; transition: color .32s; }
.feature-grid-card:hover .feat-title { color: #fff; }
.feature-grid-card p { color: #888; font-size: 13px; line-height: 1.65; transition: color .32s; }
.feature-grid-card:hover p { color: rgba(255,255,255,.75); }

.feat-note {
  margin-top: 32px; padding: 20px 26px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fdf0f2, #fff8f8);
  border-left: 4px solid #C41230;
  color: #666; font-size: 14px; line-height: 1.7;
}

/* Service detail info */
.svc-info-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #fdf6f7 0%, #fff 100%);
}
.step-list { display: flex; flex-direction: column; gap: 14px; }
.step-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 22px; border-radius: 14px;
  background: #fff; border: 1.5px solid #f0f0f5;
  transition: all .25s;
}
.step-item:hover { border-color: #C41230; box-shadow: 0 4px 20px rgba(196,18,48,.08); }
.step-num-box {
  min-width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, #C41230, #8B0A1E);
  color: #fff; font-size: 12px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step-item p { color: #555; font-size: 14px; line-height: 1.65; }

.coll-item {
  padding: 32px 22px; text-align: center;
  border-radius: 18px; background: #fff;
  border: 1.5px solid #f0f0f5; transition: all .3s;
}
.coll-item:hover {
  border-color: #C41230;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(196,18,48,.12);
}
.coll-item img { width: 80px; height: 80px; object-fit: cover; border-radius: 10px; margin: 0 auto 14px; }
.coll-item p { font-size: 14px; color: #555; font-weight: 600; }

/* ================================================
   FAQ
   ================================================ */
.ms-faq { padding: 80px 0; background: #fff; }

.faq-item {
  border: 1.5px solid #f0f0f5; border-radius: 14px;
  margin-bottom: 12px; overflow: hidden; transition: all .25s;
}
.faq-item.open {
  border-color: #C41230;
  box-shadow: 0 4px 20px rgba(196,18,48,.08);
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; cursor: pointer; background: #fff; gap: 16px;
}
.faq-item.open .faq-question {
  background: linear-gradient(135deg, #C41230, #8B0A1E);
}
.faq-q-text { flex: 1; }
.faq-q-text p { margin: 0; line-height: 1.55; font-size: 14px; transition: color .3s; }
.faq-item.open .faq-q-text p { color: #fff !important; }
.faq-q-text .zh { font-weight: 600; color: #1E1E1E; }
.faq-q-text .en { color: #555; }
.faq-q-text .bm { color: #888; font-style: italic; }
.faq-toggle { color: #C41230; transition: transform .3s, color .3s; flex-shrink: 0; }
.faq-item.open .faq-toggle { color: #fff; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: all .35s; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding: 14px 24px; color: #555; font-size: 14px;
  line-height: 1.75; border-top: 1px solid #f5f5f5;
}
.faq-answer p:first-child { border-top: none; }

/* ================================================
   LOAN CALCULATOR
   ================================================ */
.ms-calculator {
  padding: 80px 0;
  background: linear-gradient(180deg, #fdf6f7 0%, #fff 100%);
}
.calc-card {
  padding: 42px; border-radius: 22px;
  background: #fff; height: 100%;
  box-shadow: 0 4px 30px rgba(0,0,0,.07);
  border: 1.5px solid #f0f0f5;
}
.calc-field-label { font-size: 13px; font-weight: 600; color: #555; margin-bottom: 8px; }
.amount-input-wrap {
  display: flex; align-items: center;
  border: 1.5px solid #e0e0e8; border-radius: 12px;
  overflow: hidden; margin-bottom: 28px; transition: .25s;
}
.amount-input-wrap:focus-within {
  border-color: #C41230;
  box-shadow: 0 0 0 3px rgba(196,18,48,.08);
}
.currency-tag {
  padding: 13px 18px;
  background: linear-gradient(135deg, #C41230, #8B0A1E);
  color: #fff; font-weight: 700; font-size: 13px;
}
.amount-input-wrap input {
  border: none; outline: none; flex: 1;
  padding: 12px 16px; font-size: 15px; color: #1E1E1E;
}
.range-field { margin-bottom: 28px; }
.range-display {
  font-size: 26px; font-weight: 800;
  background: linear-gradient(135deg, #C41230, #8B0A1E);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 10px;
}
.ms-range {
  width: 100%; height: 5px; border-radius: 50px;
  outline: none; border: none; cursor: pointer;
  margin-bottom: 6px;
  -webkit-appearance: none; appearance: none;
}
.ms-range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, #C41230, #8B0A1E);
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(196,18,48,.4);
  border: 3px solid #fff;
}
.range-min-max { display: flex; justify-content: space-between; font-size: 12px; color: #aaa; }

.result-card {
  padding: 42px; border-radius: 22px; height: 100%;
  background: linear-gradient(135deg, #C41230 0%, #8B0A1E 55%, #5a0510 100%);
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.result-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(255,255,255,.1) 0%, transparent 55%);
}
.result-card > * { position: relative; z-index: 1; }
.result-label { color: rgba(255,255,255,.6); font-size: 13px; font-weight: 600; margin-bottom: 8px; }
.result-amount { font-size: clamp(28px,4vw,44px); font-weight: 800; color: #fff; margin-bottom: 24px; }
.result-divider { height: 1px; background: rgba(255,255,255,.15); margin: 12px 0 24px; }

.ms-calc-cta { padding: 0 0 80px; background: #fff; }

/* ================================================
   BLOG
   ================================================ */
.ms-blog { padding: 80px 0; background: #fff; }

.blog-card {
  border-radius: 18px; overflow: hidden; background: #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  transition: all .3s; height: 100%;
  border: 1.5px solid #f0f0f5;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 16px 44px rgba(0,0,0,.12); border-color: #f5e0e3; }
.blog-img { width: 100%; height: 200px; object-fit: cover; }
.blog-body { padding: 26px; }
.blog-body h5 { font-size: 15px; font-weight: 700; color: #1E1E1E; margin-bottom: 10px; line-height: 1.5; }
.blog-desc { color: #888; font-size: 13px; line-height: 1.7; margin-bottom: 16px; }
.btn-read-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600;
  background: linear-gradient(135deg, #C41230, #8B0A1E);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; transition: gap .2s;
}
.btn-read-more:hover { gap: 10px; }

/* ================================================
   BLOG DETAILS
   ================================================ */
.ms-blog-detail { padding: 80px 0; background: #fff; }
.blog-hero-img { width: 100%; border-radius: 18px; margin-bottom: 36px; }
.blog-article h1 { margin-bottom: 28px; font-size: clamp(24px,3.5vw,38px); }
.blog-article h2 { font-size: clamp(20px,2.5vw,28px); margin: 36px 0 14px; color: #1E1E1E; }
.blog-article p { color: #555; font-size: 15px; line-height: 1.85; margin-bottom: 16px; }
.blog-article ul { padding-left: 22px; margin-bottom: 20px; list-style: disc; }
.blog-article ul li { color: #555; font-size: 15px; line-height: 1.75; margin-bottom: 6px; }
.blog-article strong { color: #1E1E1E; }
.blog-cta {
  margin-top: 40px; padding: 36px 40px; border-radius: 18px;
  background: linear-gradient(135deg, #C41230 0%, #8B0A1E 55%, #5a0510 100%);
  position: relative; overflow: hidden;
}
.blog-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 0% 50%, rgba(196,18,48,.35) 0%, transparent 55%);
}
.blog-cta > * { position: relative; z-index: 1; }
.blog-cta h4 { color: #fff; margin-bottom: 8px; }
.blog-cta p { color: rgba(255,255,255,.6); margin-bottom: 20px; }

/* ================================================
   WA FLOAT BUTTON
   ================================================ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff; font-size: 26px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  animation: waPulse 2.5s infinite;
  transition: transform .25s;
}
.wa-float:hover { color: #fff; transform: scale(1.1); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.4); }
  50% { box-shadow: 0 6px 40px rgba(37,211,102,.65); }
}

/* ================================================
   FOOTER
   ================================================ */
.ms-footer {
  background: linear-gradient(160deg, #2a0008 0%, #0f0003 100%);
  padding: 80px 0 0;
  position: relative;
}
.ms-footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, #A8A9AD 20%, #C41230 50%, #8B0A1E 80%, transparent);
}
.footer-logo { height: 44px; margin-bottom: 18px; }
.footer-desc { color: rgba(255,255,255,.42); font-size: 14px; line-height: 1.75; }
.footer-heading { color: #fff; font-weight: 700; font-size: 14px; margin-bottom: 16px; }
.footer-license { color: rgba(255,255,255,.45); font-size: 13px; line-height: 1.7; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: rgba(255,255,255,.45); font-size: 14px; transition: all .2s; }
.footer-links a:hover { color: #C41230; padding-left: 5px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 24px 0; margin-top: 60px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { color: rgba(255,255,255,.28); font-size: 13px; }

/* ================================================
   MOBILE NAVBAR (collapsed menu styling)
   ================================================ */
@media (max-width: 991px) {
  .ms-header .navbar-collapse {
    background: linear-gradient(135deg, #8B0A1E, #5a0510);
    border-radius: 16px;
    padding: 16px;
    margin-top: 10px;
    border: 1px solid rgba(255,255,255,.07);
  }
  .ms-header.scrolled .navbar-collapse {
    background: #fff;
    box-shadow: 0 8px 30px rgba(0,0,0,.1);
    border-color: transparent;
  }
  .ms-header.scrolled .navbar-collapse .nav-link { color: #333 !important; }
  .ms-header .navbar-collapse .btn-wa-header {
    display: flex;
    justify-content: center;
    margin-top: 12px;
    width: 100%;
  }
  .ms-header .navbar-collapse .navbar-nav { gap: 2px; }
}

/* ================================================
   RESPONSIVE — TABLET (≤ 991px)
   ================================================ */
@media (max-width: 991px) {
  /* Hero */
  .ms-hero { padding-top: 100px; }
  .hero-center-block { padding-bottom: 40px; }
  .hero-img-card img { height: 340px; }
  .hero-stats-bar { grid-template-columns: repeat(2,1fr); }
  .hs-item:nth-child(2) { border-right: none; }
  .hs-item:nth-child(1),
  .hs-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.07); }

  /* Reduce section vertical padding */
  .ms-about-home, .ms-process, .ms-services-home,
  .ms-benefits, .ms-testimonials, .ms-cta { padding: 70px 0; }
  .ms-about-page, .ms-why-section, .svc-info-section,
  .ms-faq, .ms-calculator, .ms-blog,
  .ms-blog-detail, .ms-contact, .ms-service-page { padding: 60px 0; }
  .ms-cta-about, .ms-calc-cta { padding: 0 0 60px; }

  /* About */
  .about-img-badge { left: 16px; }

  /* Contact */
  .contact-building-wrap { min-height: 280px; }
  .contact-info-wrap { padding: 40px 32px; }

  /* CTA box */
  .cta-about-box { padding: 36px 32px; }
}

/* ================================================
   RESPONSIVE — MOBILE (≤ 767px)
   ================================================ */
@media (max-width: 767px) {
  /* Hero */
  .ms-hero { padding-top: 90px; }
  .hero-center-block { padding-bottom: 28px; }
  .hero-btns { justify-content: center; }
  .hero-img-card img { height: 260px; }
  /* Navbar — locked height on mobile, no animation, only background changes */
  .ms-header .navbar,
  .ms-header.scrolled .navbar { padding: 14px 0 !important; transition: none !important; }
  .ms-header .navbar-brand img { height: 40px; }

  /* Reduce section vertical padding */
  .ms-about-home, .ms-process, .ms-services-home,
  .ms-benefits, .ms-testimonials, .ms-cta { padding: 60px 0; }

  /* About */
  .about-stat-cards { grid-template-columns: 1fr 1fr; }
  .about-main-row { gap: 32px; }

  /* Process — single column */
  .process-grid { grid-template-columns: 1fr; gap: 36px; }
  .process-grid::before { display: none; }
  .process-item { padding: 0 16px; }

  /* Benefits */
  .benefits-layout { gap: 40px; }

  /* Testimonials — single column */
  .testi-grid { grid-template-columns: 1fr; }

  /* CTA box */
  .cta-about-box { flex-direction: column; text-align: center; }

  /* Page banner */
  .ms-page-banner { padding: 110px 0 48px; }
}

/* ================================================
   RESPONSIVE — SMALL MOBILE (≤ 575px)
   ================================================ */
@media (max-width: 575px) {
  /* Navbar — same height as 767px block, no change needed */
  /* Hero */
  .ms-hero { padding-top: 80px; }
  .ms-hero h1 { font-size: clamp(30px, 9vw, 44px); }
  .hero-desc { font-size: 15px; }
  .ms-hero-badge { font-size: 10px; letter-spacing: 0.5px; padding: 6px 14px; }
  .hero-img-card img { height: 200px; }
  .hs-item { padding: 14px 8px; }
  .hs-item strong { font-size: 18px; }
  .hs-item small { font-size: 11px; }

  /* About */
  .about-stat-cards { grid-template-columns: 1fr 1fr; gap: 12px; }
  .asc-card { padding: 22px 18px; }
  .about-img-badge { left: 12px; bottom: 18px; padding: 12px 16px; }
  .about-img-badge .years { font-size: 22px; }
  .about-img-badge .years-label { font-size: 11px; }

  /* Services — single column */
  .services-grid { grid-template-columns: 1fr; }

  /* Testimonials — single column */
  .testi-grid { grid-template-columns: 1fr; }

  /* Calculator */
  .calc-card, .result-card { padding: 26px 22px; }

  /* Contact */
  .contact-info-wrap { padding: 30px 22px; }

  /* CTA box */
  .cta-about-box { padding: 28px 22px; }

  /* Footer bottom */
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}
