/* ============================================================
   MKI CONSULTING SERVICES — MASTER STYLESHEET
   Version 1.0 | Production Ready
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&family=Open+Sans:wght@300;400;600&display=swap');

/* ── CSS Variables ── */
:root {
  --navy-dark:    #0B1F3A;
  --navy-mid:     #102B52;
  --navy-light:   #1E3A8A;
  --gold:         #C9A227;
  --gold-light:   #E2B93B;
  --white:        #FFFFFF;
  --off-white:    #F8FAFC;
  --gray-100:     #F3F4F6;
  --gray-200:     #E5E7EB;
  --gray-500:     #6B7280;
  --gray-700:     #374151;
  --gray-900:     #111827;
  --font-head:    'Montserrat', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-alt:     'Open Sans', sans-serif;
  --shadow-sm:    0 1px 3px rgba(11,31,58,0.08);
  --shadow-md:    0 4px 16px rgba(11,31,58,0.12);
  --shadow-lg:    0 8px 32px rgba(11,31,58,0.16);
  --transition:   0.25s ease;
  --radius:       4px;
  --radius-lg:    8px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--navy-mid); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--navy-dark);
  line-height: 1.2;
  font-weight: 700;
}

p { margin-bottom: 1rem; }
ul { list-style: none; padding: 0; }

/* ── Utility ── */
.text-gold    { color: var(--gold) !important; }
.text-navy    { color: var(--navy-dark) !important; }
.text-white   { color: var(--white) !important; }
.bg-navy      { background-color: var(--navy-dark) !important; }
.bg-off-white { background-color: var(--off-white) !important; }
.section-pad  { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }

.gold-rule {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 16px 0 24px;
}
.gold-rule.center { margin: 16px auto 24px; }

.section-label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 640px;
  font-weight: 400;
}

/* ── Buttons ── */
.btn-primary-mki {
  background: var(--gold);
  color: var(--navy-dark);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-block;
  transition: all var(--transition);
}
.btn-primary-mki:hover {
  background: var(--gold-light);
  color: var(--navy-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,162,39,0.35);
}

.btn-outline-mki {
  background: transparent;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 13px 32px;
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-block;
  transition: all var(--transition);
}
.btn-outline-mki:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: var(--white);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy-dark);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 13px 32px;
  border: 1.5px solid var(--navy-dark);
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-block;
  transition: all var(--transition);
}
.btn-outline-navy:hover {
  background: var(--navy-dark);
  color: var(--white);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#mainNav {
  background: var(--navy-dark);
  padding: 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

#mainNav.scrolled {
  background: rgba(11,31,58,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.navbar-brand {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
}

.brand-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
}

.brand-name span { color: var(--gold); }

.brand-sub {
  font-size: 0.62rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 3px;
}

.navbar-nav .nav-link {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78) !important;
  padding: 28px 16px !important;
  transition: color var(--transition);
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--white) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--gold);
  color: var(--navy-dark) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius);
  margin-left: 12px;
  font-weight: 700;
}
.nav-cta::after { display: none; }
.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--navy-dark) !important;
}

.navbar-toggler {
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 10px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================================
   HERO
   ============================================================ */
body {
  padding-top: 80px;
}

/* ============================================================
   HERO — background-image (รองรับทุก browser รวมถึง mobile)
   ============================================================ */

.hero-section {
  /* สีพื้นหลัง fallback กรณีรูปยังโหลดไม่เสร็จ */
  background-color: #0B1F3A;

  /*
   * background-image layer 1: gradient overlay (ซ้าย=มืด, ขวา=โปร่ง)
   * background-image layer 2: รูป og-image.jpg
   * path: ../assets/og-image.jpg  (css อยู่ใน /css/ ดังนั้น .. = root)
   */
  background-image:
    linear-gradient(
      105deg,
      rgba(11,31,58,0.97)  0%,
      rgba(11,31,58,0.93) 35%,
      rgba(11,31,58,0.60) 55%,
      rgba(11,31,58,0.15) 78%,
      rgba(11,31,58,0.00) 100%
    ),
    url('../assets/og-image.jpg');

  background-size:     cover;
  background-position: center right;
  background-repeat:   no-repeat;
  background-attachment: scroll; /* ห้ามใช้ fixed บน iOS — จะทำให้รูปหาย */

  min-height: 100vh;
  min-height: -webkit-fill-available; /* แก้บัค iOS Safari address bar */

  display:        flex;
  align-items:    center;
  position:       relative;
  overflow:       hidden;
  padding:        140px 0 100px;
}

/* ปิด ::before / ::after เดิมที่บังรูป */
.hero-section::before,
.hero-section::after { display: none; }

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

/* ── Tablet ≤ 991px ── */
@media (max-width: 991px) {
  .hero-section {
    background-image:
      linear-gradient(
        180deg,
        rgba(11,31,58,0.88) 0%,
        rgba(11,31,58,0.82) 100%
      ),
      url('../assets/og-image.jpg');
    background-position: 68% center;
    min-height: auto;
    padding: 120px 0 72px;
  }
}

/* ── Mobile ≤ 575px ── */
@media (max-width: 575px) {
  .hero-section {
    background-image:
      linear-gradient(
        180deg,
        rgba(11,31,58,0.90) 0%,
        rgba(11,31,58,0.87) 100%
      ),
      url('../assets/og-image.jpg');
    background-position: 60% center;
    padding: 108px 0 60px;
  }
  .hero-stats        { flex-wrap: wrap; gap: 20px; }
  .hero-stat-number  { font-size: 1.6rem; }
  .hero-cta-group    { flex-direction: column; }
  .hero-cta-group a  { width: 100%; text-align: center; }
}


.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-label::before {
  content: '';
  width: 32px;
  height: 1.5px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.hero-title .accent { color: var(--gold); }

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 44px;
  font-weight: 300;
}

.hero-cta-group { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-number {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-stat-number span { color: var(--gold); }

.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 16px;
  transition: transform var(--transition);
}

.hero-card:hover { transform: translateY(-2px); }

.hero-card-icon {
  width: 40px;
  height: 40px;
  background: rgba(201,162,39,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 1.1rem;
}

.hero-card-title {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.hero-card-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

/* ============================================================
   MARQUEE / TICKER
   ============================================================ */
.ticker-wrap {
  background: var(--gold);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-content {
  display: inline-flex;
  gap: 0;
  animation: ticker 40s linear infinite;
}

.ticker-item {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-dark);
  padding: 0 32px;
}

.ticker-dot {
  color: var(--navy-dark);
  opacity: 0.4;
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   WHY MKI
   ============================================================ */
.why-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.why-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateY(-4px);
}

.why-card:hover::before { transform: scaleX(1); }

.why-icon {
  width: 52px;
  height: 52px;
  background: var(--off-white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--navy-mid);
  margin-bottom: 20px;
  transition: all var(--transition);
}

.why-card:hover .why-icon {
  background: var(--navy-dark);
  color: var(--gold);
}

.why-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy-dark);
}

.why-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.6;
}

/* ============================================================
   SERVICES
   ============================================================ */
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  height: 100%;
  transition: all var(--transition);
  cursor: pointer;
}

.service-card:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card:hover h4,
.service-card:hover p,
.service-card:hover .service-icon { color: var(--white); }

.service-card:hover .service-arrow { color: var(--gold); }

.service-icon {
  font-size: 1.6rem;
  color: var(--navy-mid);
  margin-bottom: 20px;
  transition: color var(--transition);
}

.service-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  transition: color var(--transition);
}

.service-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.6;
  transition: color var(--transition);
}

.service-card:hover p { color: rgba(255,255,255,0.65); }

.service-arrow {
  display: block;
  margin-top: 20px;
  font-size: 0.8rem;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--navy-mid);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--transition);
}

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industry-tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.industry-tab-btn {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  background: transparent;
  color: var(--gray-500);
  cursor: pointer;
  transition: all var(--transition);
}

.industry-tab-btn.active,
.industry-tab-btn:hover {
  background: var(--navy-dark);
  color: var(--white);
  border-color: var(--navy-dark);
}

.industry-panel { display: none; }
.industry-panel.active { display: block; }

.industry-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  padding: 40px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}

.industry-col h5 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.industry-col ul li {
  font-size: 0.875rem;
  color: var(--gray-700);
  padding: 6px 0;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 8px;
}

.industry-col ul li::before {
  content: '›';
  color: var(--gold);
  font-weight: 700;
}

/* ============================================================
   GMS MAP SECTION
   ============================================================ */
.gms-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, #0d2547 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.gms-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,162,39,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.country-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  margin: 4px;
  font-family: var(--font-head);
  letter-spacing: 0.03em;
  transition: all var(--transition);
}

.country-badge:hover {
  background: rgba(201,162,39,0.2);
  border-color: var(--gold);
  color: var(--gold);
}

.country-badge .flag { font-size: 1rem; }

.gms-stat-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}

.gms-stat-box .num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.gms-stat-box .lbl {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
}

/* ============================================================
   INSIGHTS
   ============================================================ */
.insight-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  transition: all var(--transition);
}

.insight-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.insight-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.insight-card-body { padding: 28px; }

.insight-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 2px;
  padding: 3px 10px;
  margin-bottom: 14px;
}

.insight-card h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

.insight-card p {
  font-size: 0.83rem;
  color: var(--gray-500);
  margin: 0;
}

.insight-meta {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  background: linear-gradient(90deg, var(--navy-dark) 0%, var(--navy-light) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  left: -60px;
  top: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(201,162,39,0.08);
}

.cta-strip h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--white);
  font-weight: 700;
}

.cta-strip p {
  color: rgba(255,255,255,0.65);
  margin: 0;
  font-size: 1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #070f1e;
  color: rgba(255,255,255,0.55);
  padding: 72px 0 0;
}

.footer-brand-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
}

.footer-brand-name span { color: var(--gold); }

.footer-tagline {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
  margin-bottom: 20px;
  font-family: var(--font-alt);
}

.footer-desc {
  font-size: 0.83rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 300px;
}

.footer-heading {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links li a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  padding: 4px 0;
  display: block;
  transition: all var(--transition);
}

.footer-links li a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-item .icon {
  color: var(--gold);
  font-size: 0.85rem;
  margin-top: 2px;
  flex-shrink: 0;
  width: 14px;
}

.footer-contact-item span {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 48px;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  margin: 0;
}

/* ============================================================
   PAGE HERO (INNER PAGES)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-light) 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::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='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%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/g%3E%3C/svg%3E");
}

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

.breadcrumb-mki {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
  font-family: var(--font-head);
  letter-spacing: 0.04em;
}

.breadcrumb-mki a { color: rgba(255,255,255,0.45); }
.breadcrumb-mki a:hover { color: var(--gold); }
.breadcrumb-mki .sep { opacity: 0.4; }
.breadcrumb-mki .current { color: rgba(255,255,255,0.75); }

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-value {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-200);
}

.about-value:last-child { border-bottom: none; }

.about-value-icon {
  width: 44px;
  height: 44px;
  background: rgba(201,162,39,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.about-value h5 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--navy-dark);
}

.about-value p {
  font-size: 0.83rem;
  color: var(--gray-500);
  margin: 0;
}

.timeline-item {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}

.timeline-year {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gold);
  width: 60px;
  flex-shrink: 0;
  padding-top: 2px;
}

.timeline-body h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 4px;
}

.timeline-body p {
  font-size: 0.83rem;
  color: var(--gray-500);
  margin: 0;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-detail-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 24px;
  transition: all var(--transition);
}

.service-detail-card:hover {
  box-shadow: var(--shadow-md);
}

.service-detail-card .num {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 8px;
}

.service-detail-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 12px;
}

.service-detail-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 20px;
}

.service-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  font-family: var(--font-head);
  color: var(--navy-mid);
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: 2px;
  padding: 4px 10px;
  margin: 3px 3px 3px 0;
  letter-spacing: 0.04em;
}

/* ============================================================
   GMS PAGE
   ============================================================ */
.corridor-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 16px;
  transition: all var(--transition);
}

.corridor-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.corridor-card h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 6px;
}

.corridor-card p {
  font-size: 0.83rem;
  color: var(--gray-500);
  margin: 0;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-box {
  background: var(--navy-dark);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  color: var(--white);
  height: 100%;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact-method:last-child { border-bottom: none; }

.contact-method-icon {
  width: 44px;
  height: 44px;
  background: rgba(201,162,39,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-method h6 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-method p, .contact-method a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}

.form-label-mki {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-dark);
  margin-bottom: 6px;
  display: block;
}

.form-control-mki {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gray-700);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-control-mki:focus {
  border-color: var(--navy-mid);
  box-shadow: 0 0 0 3px rgba(16,43,82,0.08);
}

.form-group-mki { margin-bottom: 22px; }

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-whatsapp:hover {
  background: #1fba58;
  color: var(--white);
  transform: translateY(-1px);
}

.btn-call {
  background: var(--navy-mid);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-call:hover {
  background: var(--navy-dark);
  color: var(--white);
}

.map-placeholder {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ============================================================
   INSIGHTS PAGE
   ============================================================ */
.insight-full-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  height: 100%;
}

.insight-full-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.insight-full-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.insight-full-body { padding: 28px; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--navy-dark);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-md);
}

.back-top.show {
  opacity: 1;
  pointer-events: all;
}

.back-top:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .navbar-nav .nav-link { padding: 12px 16px !important; }
  .navbar-nav .nav-link::after { display: none; }
  .nav-cta { margin-left: 0; margin-top: 8px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .industry-content { grid-template-columns: 1fr; gap: 24px; }
  .hero-visual { margin-top: 40px; }
}

@media (max-width: 767px) {
  .section-pad { padding: 64px 0; }
  .hero-section { padding: 120px 0 80px; }
  .hero-stats { gap: 20px; }
  .hero-stat-number { font-size: 1.5rem; }
  .cta-strip { padding: 56px 0; }
  .contact-info-box, .contact-form-wrap { padding: 32px 24px; }
  footer { padding: 56px 0 0; }
}

@media (max-width: 480px) {
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group a, .hero-cta-group button { width: 100%; text-align: center; }
  .industry-tab-nav { gap: 6px; }
  .industry-tab-btn { font-size: 0.72rem; padding: 8px 14px; }
}
