/*
Theme Name: ARK Consults
Theme URI: https://arkconsults.com
Author: ARK Consults
Author URI: https://arkconsults.com
Description: Professional management consulting theme for ARK Consults Jakarta — Bring Vision to Execution
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ark-consults
Tags: business, consulting, professional, one-page, custom-menu, featured-images, full-width-template
*/

/* ============================================================
   ARK CONSULTS — DESIGN TOKENS
   ============================================================ */
:root {
  --navy:        #0D1B2A;
  --blue:        #1A4A8A;
  --mid:         #2C6FBF;
  --sky:         #4A90D9;
  --orange:      #E05A1C;
  --orange-light:#F4763A;
  --cream:       #F8F5F0;
  --white:       #FFFFFF;
  --gray:        #8A8A8A;
  --light-gray:  #F2F2F2;
  --border:      rgba(26,74,138,0.15);
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'DM Sans', sans-serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--navy);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sky); text-decoration: none; transition: color .2s; }
a:hover { color: var(--blue); }
ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
}
h1 { font-size: clamp(36px, 5vw, 52px); }
h2 { font-size: clamp(26px, 3.5vw, 38px); }
h3 { font-size: clamp(18px, 2.5vw, 24px); }
h4 { font-size: 18px; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-label {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sky);
  font-weight: 500;
  margin-bottom: 12px;
  display: block;
  font-family: var(--font-sans);
}
.section-title { margin-bottom: 16px; }
.section-desc {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
  max-width: 560px;
}
.text-white { color: var(--white) !important; }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-sans);
  cursor: pointer;
  border: none;
  transition: all .2s;
  text-decoration: none;
}
.btn-primary   { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-light); transform: translateY(-1px); color: var(--white); }
.btn-blue      { background: var(--blue); color: var(--white); }
.btn-blue:hover { background: var(--navy); color: var(--white); }
.btn-white     { background: var(--white); color: var(--orange); }
.btn-white:hover { box-shadow: 0 8px 24px rgba(0,0,0,.15); transform: translateY(-1px); color: var(--orange); }
.btn-outline   { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.4); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); color: var(--white); }

/* ============================================================
   NAVIGATION
   ============================================================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon-wrap {
  width: 40px; height: 40px;
  background: var(--navy);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.logo-icon-wrap svg { width: 22px; height: 22px; }
.logo-name {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.logo-tagline {
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--gray);
  text-transform: uppercase;
  margin-top: 3px;
}
#main-menu { display: flex; align-items: center; gap: 4px; }
#main-menu li a {
  display: block;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  border-radius: 6px;
  transition: all .2s;
  text-decoration: none;
}
#main-menu li a:hover,
#main-menu li.current-menu-item a { background: var(--light-gray); color: var(--blue); }
.header-cta {
  background: var(--blue);
  color: var(--white);
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background .2s;
  margin-left: 8px;
}
.header-cta:hover { background: var(--navy); color: var(--white); }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .3s;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 60%, var(--mid) 100%);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.hero-circle-1 {
  position: absolute; right: -80px; top: -80px;
  width: 520px; height: 520px; border-radius: 50%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  pointer-events: none;
}
.hero-circle-2 {
  position: absolute; right: 80px; bottom: -120px;
  width: 340px; height: 340px; border-radius: 50%;
  background: rgba(255,255,255,.03);
  pointer-events: none;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 16px;
  display: block;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.5vw, 58px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-title em { font-style: italic; color: var(--orange-light); }
.hero-desc {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,.72);
  max-width: 500px;
  font-weight: 300;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  margin-top: 5px;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 26px;
  transition: all .25s;
  text-decoration: none;
  display: block;
  color: inherit;
}
.service-card:hover {
  border-color: var(--sky);
  box-shadow: 0 8px 32px rgba(26,74,138,.10);
  transform: translateY(-3px);
}
.service-icon-wrap {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  border-radius: 10px;
  margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
}
.service-icon-wrap svg {
  width: 22px; height: 22px;
  fill: none; stroke: white;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.service-card h3 {
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-sans);
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p { font-size: 13px; color: var(--gray); line-height: 1.65; margin: 0; }
.service-card .card-arrow {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  color: var(--sky);
  font-weight: 500;
}

/* ============================================================
   INDUSTRIES STRIP
   ============================================================ */
.industries-section {
  background: var(--navy);
  padding: 64px 0;
}
.industries-section .section-label { color: var(--orange-light); }
.industries-section .section-title { color: var(--white); }
.industry-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.industry-tag {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.8);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 12px;
  transition: all .2s;
  cursor: default;
}
.industry-tag:hover { background: var(--sky); border-color: var(--sky); color: var(--white); }

/* ============================================================
   VALUES SECTION
   ============================================================ */
.values-section { background: var(--white); padding: 80px 0; }
.values-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 40px; }
.value-item { text-align: center; padding: 28px 16px; }
.value-num {
  font-family: var(--font-serif);
  font-size: 40px;
  color: var(--border);
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1;
}
.value-name { font-size: 13px; font-weight: 500; color: var(--navy); line-height: 1.4; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  padding: 64px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-section h2 { color: var(--white); font-size: 30px; margin-bottom: 8px; }
.cta-section p  { color: rgba(255,255,255,.8); font-size: 15px; margin: 0; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0;
}
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: center;
}
.about-hero .section-title { color: var(--white); font-size: 42px; }
.about-hero-text p { color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.8; margin-top: 16px; }

.person-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 32px;
}
.person-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 26px;
  color: rgba(255,255,255,.7);
}
.person-name {
  font-family: var(--font-serif);
  font-size: 21px;
  color: var(--white);
  font-weight: 700;
}
.person-role { font-size: 12px; color: var(--orange-light); margin-top: 4px; letter-spacing: .05em; }
.person-bio  { font-size: 13px; color: rgba(255,255,255,.6); margin-top: 14px; line-height: 1.7; }
.person-contact { margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); }
.contact-row {
  display: flex;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  margin-bottom: 6px;
}
.contact-key { color: rgba(255,255,255,.3); min-width: 52px; }

.vmv-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.vmv-card { background: var(--white); padding: 44px 36px; }
.vmv-card.dark { background: var(--navy); }
.vmv-label { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--sky); margin-bottom: 12px; display: block; }
.vmv-card.dark .vmv-label { color: var(--orange-light); }
.vmv-title { font-size: 22px; margin-bottom: 14px; }
.vmv-card.dark .vmv-title { color: var(--white); }
.vmv-text { font-size: 14px; color: var(--gray); line-height: 1.75; font-family: var(--font-sans); }
.vmv-card.dark .vmv-text { color: rgba(255,255,255,.6); }

.about-story-section { padding: 80px 0; }
.story-text p { font-size: 15px; color: var(--navy); line-height: 1.85; margin-bottom: 18px; }
.story-text p:first-child { font-size: 18px; font-weight: 300; }
.office-card {
  background: var(--navy);
  color: var(--white);
  border-radius: 16px;
  padding: 36px;
}
.office-card h4 { font-family: var(--font-serif); font-size: 20px; margin-bottom: 22px; color: var(--white); }
.office-row {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,.7);
  margin-bottom: 10px;
}
.office-key { color: rgba(255,255,255,.35); min-width: 56px; }
.expertise-card {
  background: var(--light-gray);
  border-radius: 12px;
  padding: 24px;
  margin-top: 18px;
}
.expertise-card .section-label { margin-bottom: 10px; }
.expertise-card p { font-size: 13px; color: var(--gray); line-height: 1.7; margin: 0; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.page-hero {
  background: var(--cream);
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.page-hero .section-title { font-size: 44px; }
.service-full-list { padding: 56px 0; }
.service-full-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 18px;
  overflow: hidden;
  transition: box-shadow .2s;
}
.service-full-card:hover { box-shadow: 0 4px 24px rgba(26,74,138,.09); }
.sfc-left {
  background: var(--navy);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sfc-left.alt { background: var(--blue); }
.sfc-num {
  font-family: var(--font-serif);
  font-size: 48px;
  color: rgba(255,255,255,.12);
  font-weight: 700;
  line-height: 1;
}
.sfc-name {
  font-family: var(--font-serif);
  font-size: 19px;
  color: var(--white);
  line-height: 1.35;
  margin-top: auto;
  font-weight: 700;
}
.sfc-right { background: var(--white); padding: 32px; }
.sfc-desc { font-size: 14px; color: var(--gray); line-height: 1.75; margin-bottom: 18px; }
.sfc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.sfc-tag {
  background: var(--light-gray);
  color: var(--navy);
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 100px;
  font-weight: 500;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero { background: var(--blue); color: var(--white); padding: 72px 0; text-align: center; }
.contact-hero .section-title { color: var(--white); font-size: 40px; }
.contact-hero p { color: rgba(255,255,255,.7); font-size: 16px; margin-top: 10px; }
.contact-body { display: grid; grid-template-columns: 1fr 1fr; }
.contact-form-wrap { background: var(--white); padding: 56px; }
.contact-form-wrap h3 { font-family: var(--font-serif); font-size: 24px; color: var(--navy); margin-bottom: 28px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
label.form-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
input.form-field,
select.form-field,
textarea.form-field {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--navy);
  transition: border .2s, box-shadow .2s;
  outline: none;
  -webkit-appearance: none;
}
input.form-field:focus,
select.form-field:focus,
textarea.form-field:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(74,144,217,.12);
  background: var(--white);
}
textarea.form-field { resize: vertical; min-height: 110px; }
select.form-field { cursor: pointer; }
.form-submit {
  background: var(--blue);
  color: var(--white);
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-sans);
  border: none;
  cursor: pointer;
  margin-top: 8px;
  transition: background .2s;
}
.form-submit:hover { background: var(--navy); }
.contact-info-wrap { background: var(--navy); padding: 56px; color: var(--white); }
.contact-info-wrap h3 { font-family: var(--font-serif); font-size: 24px; color: var(--white); margin-bottom: 32px; }
.info-block { margin-bottom: 28px; }
.info-key {
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 8px;
  display: block;
}
.info-val { font-size: 14px; color: rgba(255,255,255,.8); line-height: 1.75; }
.info-val a { color: var(--orange-light); text-decoration: none; }
.info-divider { border: none; border-top: 1px solid rgba(255,255,255,.1); margin: 28px 0; }
.quote-box {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 24px;
}
.quote-text {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
}
.quote-attr { font-size: 11px; color: rgba(255,255,255,.35); margin-top: 12px; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.4);
  text-align: center;
  padding: 24px 32px;
  font-size: 12px;
}
#site-footer a { color: rgba(255,255,255,.4); text-decoration: none; }
#site-footer span { color: var(--orange-light); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .about-hero-grid { grid-template-columns: 1fr; }
  .contact-body { grid-template-columns: 1fr; }
  .service-full-card { grid-template-columns: 1fr; }
  .sfc-left { padding: 24px; }
  .grid-2 { grid-template-columns: 1fr; }
  .vmv-section { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 24px; }
  #main-menu { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 12px 20px; }
  #main-menu.open { display: flex; }
  .menu-toggle { display: flex; }
  .header-cta { display: none; }
  .hero-section { padding: 60px 0; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .contact-form-wrap, .contact-info-wrap { padding: 32px 24px; }
}

/* ============================================================
   WORDPRESS SPECIFIC
   ============================================================ */
.wp-block-image { margin: 24px 0; }
.aligncenter { text-align: center; }
.alignright { float: right; margin-left: 24px; }
.alignleft { float: left; margin-right: 24px; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--gray); text-align: center; margin-top: 6px; }
