/*
Theme Name:  Pakse Japan
Theme URI:   https://paksejapan.com
Description: ラオス・パクセ日系ビジネス情報サイト専用テーマ
Author:      PakseJapan
Version:     1.0.0
License:     GNU General Public License v2 or later
Text Domain: pakse-japan
*/

/* ============================================================
   DESIGN TOKENS — すべての色・フォント・スペースはここを変更
   ============================================================ */
:root {
  /* ---- カラーパレット ---- */
  --color-forest:       #1a3a2a;   /* ジャングルグリーン（メインダーク） */
  --color-forest-mid:   #2d5c3f;   /* 中間グリーン */
  --color-forest-light: #3d7a52;   /* ライトグリーン */
  --color-gold:         #c8973a;   /* ゴールドアクセント */
  --color-gold-light:   #e8b86a;   /* ライトゴールド */
  --color-cream:        #faf7f2;   /* ページ背景 */
  --color-ivory:        #f2ede4;   /* セクション背景 */
  --color-white:        #ffffff;
  --color-text-primary: #1c1c1c;
  --color-text-body:    #3a3a3a;
  --color-text-muted:   #7a7a72;
  --color-border:       #ddd8ce;
  --color-border-light: #ede9e2;

  /* ---- タイポグラフィ ---- */
  --font-display:  'Playfair Display', 'Noto Serif JP', serif;
  --font-serif-jp: 'Noto Serif JP', 'Playfair Display', serif;
  --font-sans:     'Noto Sans JP', sans-serif;

  /* ---- スペーシング ---- */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  /* ---- その他 ---- */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(26,58,42,0.08);
  --shadow-md: 0 8px 32px rgba(26,58,42,0.12);
  --shadow-lg: 0 16px 56px rgba(26,58,42,0.16);
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--color-cream);
  color: var(--color-text-body);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
.t-display {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--color-white);
}
.t-h1 {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-forest);
}
.t-h2 {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-forest);
}
.t-h3 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-primary);
}
.t-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.t-body  { font-size: 0.95rem; line-height: 1.85; color: var(--color-text-body); }
.t-small { font-size: 0.82rem; color: var(--color-text-muted); }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container       { max-width: 1100px; margin: 0 auto; padding: 0 var(--space-md); }
.container-wide  { max-width: 1280px; margin: 0 auto; padding: 0 var(--space-md); }
.section         { padding: var(--space-2xl) 0; }
.section-alt     { background: var(--color-ivory); }
.grid-2  { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
.grid-3  { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.grid-4  { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); }
.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

.section-header { margin-bottom: var(--space-lg); }
.section-header .t-label { margin-bottom: 0.5rem; }
.section-header::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--color-gold);
  margin-top: 0.75rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--color-gold);
  color: var(--color-forest);
  border: 2px solid var(--color-gold);
}
.btn-primary:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--color-white); }
.btn-ghost {
  background: transparent;
  color: var(--color-forest);
  border: 1.5px solid var(--color-forest);
}
.btn-ghost:hover { background: var(--color-forest); color: var(--color-white); }

/* ============================================================
   TAGS / BADGES
   ============================================================ */
.tag {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 2px;
  background: var(--color-ivory);
  color: var(--color-forest-mid);
  border: 1px solid var(--color-border);
}
.tag-gold   { background: rgba(200,151,58,0.12); color: var(--color-gold);   border-color: rgba(200,151,58,0.3); }
.tag-forest { background: rgba(26,58,42,0.08);   color: var(--color-forest); border-color: rgba(26,58,42,0.2);  }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--color-ivory);
}
.card-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--color-ivory) 0%, var(--color-border) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.8rem;
}
.card-body   { padding: 1.25rem; }
.card-title  { font-family: var(--font-serif-jp); font-size: 1rem; font-weight: 700; color: var(--color-text-primary); margin: 0.5rem 0 0.4rem; line-height: 1.5; }
.card-meta   { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.8rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--color-forest);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled { background: rgba(26,58,42,0.97); box-shadow: var(--shadow-md); }
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 64px;
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-white);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo span { color: var(--color-gold); }
.nav-links { display: flex; align-items: center; gap: 0; flex: 1; }

/* wp_nav_menu が出力する <a> に直接スタイルを当てる */
.nav-links a {
  padding: 0 1rem;
  height: 64px;
  display: flex;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.03em;
  transition: color var(--transition);
  position: relative;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 1rem; right: 1rem;
  height: 2px;
  background: var(--color-gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover,
.nav-links .current-menu-item > a { color: var(--color-white); }
.nav-links a:hover::after,
.nav-links .current-menu-item > a::after { transform: scaleX(1); }

.nav-cta  { margin-left: auto; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--color-white); border-radius: 2px; transition: all var(--transition); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* モバイルメニュー */
.nav-mobile {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--color-forest);
  z-index: 99;
  overflow-y: auto;
  padding: var(--space-md);
  flex-direction: column;
  gap: 0;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  font-weight: 500;
  transition: color var(--transition);
  display: block;
}
.nav-mobile a:hover { color: var(--color-gold); }

/* ============================================================
   HERO — フロントページ
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--color-forest);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 64px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(45,92,63,0.6) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(200,151,58,0.15) 0%, transparent 50%);
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -45deg, transparent, transparent 60px,
    rgba(255,255,255,0.015) 60px, rgba(255,255,255,0.015) 61px
  );
}
.hero-content { position: relative; z-index: 2; padding: var(--space-2xl) 0; }
.hero-eyebrow { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.hero-eyebrow-line { width: 32px; height: 1px; background: var(--color-gold); }
.hero-eyebrow-text { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.15em; color: var(--color-gold); text-transform: uppercase; }
.hero-subtitle { font-size: clamp(0.95rem, 2vw, 1.15rem); color: rgba(255,255,255,0.65); max-width: 520px; margin: 1.25rem 0 2rem; line-height: 1.9; }
.hero-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.hero-deco {
  position: absolute;
  right: -40px; top: 50%; transform: translateY(-50%);
  width: 480px; height: 480px;
  border: 1px solid rgba(200,151,58,0.15); border-radius: 50%;
  pointer-events: none;
}
.hero-deco::before {
  content: ''; position: absolute; inset: 40px;
  border: 1px solid rgba(200,151,58,0.1); border-radius: 50%;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar { background: var(--color-forest); padding: 1.75rem 0; border-top: 1px solid rgba(255,255,255,0.06); }
.stats-bar-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 0 var(--space-md); border-right: 1px solid rgba(255,255,255,0.08); text-align: center; }
.stat-item:last-child { border-right: none; }
.stat-num   { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--color-gold); line-height: 1.1; }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.55); margin-top: 0.2rem; letter-spacing: 0.05em; }

/* ============================================================
   NEWS
   ============================================================ */
.news-list { display: flex; flex-direction: column; gap: 0; }
.news-item {
  display: grid; grid-template-columns: 120px 1fr; gap: 1rem;
  padding: 1.25rem 0; border-bottom: 1px solid var(--color-border-light);
  transition: background var(--transition); cursor: pointer;
}
.news-item:hover { background: var(--color-ivory); margin: 0 -1rem; padding-left: 1rem; padding-right: 1rem; border-radius: var(--radius-sm); }
.news-img   { width: 120px; height: 80px; border-radius: var(--radius-sm); object-fit: cover; background: var(--color-ivory); flex-shrink: 0; }
.news-body  { display: flex; flex-direction: column; gap: 0.35rem; }
.news-title { font-size: 0.92rem; font-weight: 700; color: var(--color-text-primary); line-height: 1.55; }
.news-date  { font-size: 0.75rem; color: var(--color-text-muted); }

/* ============================================================
   INTERVIEW
   ============================================================ */
.interview-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.interview-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.interview-card-img {
  width: 100%; aspect-ratio: 3/2;
  background: linear-gradient(135deg, var(--color-forest-light) 0%, var(--color-forest) 100%);
  display: flex; align-items: flex-end; padding: 1rem;
}
.interview-person { display: flex; align-items: center; gap: 0.75rem; }
.interview-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.2); border: 2px solid rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--color-white); flex-shrink: 0;
}
.interview-name  { color: var(--color-white); font-size: 0.9rem; font-weight: 700; }
.interview-role  { color: rgba(255,255,255,0.7); font-size: 0.75rem; }
.interview-body  { padding: 1.25rem; }
.interview-quote { font-family: var(--font-serif-jp); font-size: 1rem; font-weight: 700; color: var(--color-text-primary); line-height: 1.55; margin-bottom: 0.5rem; }

/* ============================================================
   PAGE HERO（サブページ共通）
   ============================================================ */
.page-hero {
  background: var(--color-forest);
  padding: calc(64px + 3.5rem) 0 3.5rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 80px,
    rgba(255,255,255,0.012) 80px, rgba(255,255,255,0.012) 81px
  );
}
.page-hero h1 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 700; color: var(--color-white); line-height: 1.2; margin-bottom: 1rem; }
.page-hero p  { color: rgba(255,255,255,0.65); max-width: 560px; font-size: 0.95rem; line-height: 1.85; }
.breadcrumb   { display: flex; align-items: center; gap: 0.4rem; font-size: 0.75rem; color: rgba(255,255,255,0.45); margin-bottom: 1rem; }
.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--color-gold); }

/* ============================================================
   SIDEBAR LAYOUT
   ============================================================ */
.layout-sidebar      { display: grid; grid-template-columns: 1fr 280px; gap: var(--space-lg); align-items: start; }
.layout-sidebar-left { display: grid; grid-template-columns: 240px 1fr; gap: var(--space-lg); align-items: start; }
.sidebar-widget      { background: var(--color-ivory); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 1.25rem; }
.sidebar-widget + .sidebar-widget { margin-top: var(--space-sm); }
.sidebar-widget-title { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-muted); margin-bottom: 0.75rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--color-border); }

/* ============================================================
   MISC COMPONENTS
   ============================================================ */
.info-block { background: var(--color-white); border-radius: var(--radius-md); padding: var(--space-md); border: 1px solid var(--color-border-light); }
.detail-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-muted); margin-bottom: 0.3rem; }
.detail-value { font-size: 0.92rem; color: var(--color-text-primary); margin-bottom: var(--space-sm); }
.toc-link { display: block; padding: 0.45rem 0; font-size: 0.85rem; color: var(--color-text-body); border-bottom: 1px solid var(--color-border-light); transition: color var(--transition), padding-left var(--transition); }
.toc-link:hover { color: var(--color-forest); padding-left: 0.4rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--color-forest); color: rgba(255,255,255,0.65); padding: var(--space-2xl) 0 var(--space-lg); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-lg); margin-bottom: var(--space-xl); }
.footer-logo { font-family: var(--font-display); font-size: 1.2rem; color: var(--color-white); margin-bottom: 0.75rem; }
.footer-logo span { color: var(--color-gold); }
.footer-desc { font-size: 0.82rem; line-height: 1.8; }
.footer-heading { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 0.75rem; }
.footer a { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.6); padding: 0.3rem 0; transition: color var(--transition); }
.footer a:hover { color: var(--color-gold); }
.footer-bottom { padding-top: var(--space-md); border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; }

/* ============================================================
   FADE-IN ANIMATION
   ============================================================ */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   SEARCH / FILTER
   ============================================================ */
.search-bar { display: flex; gap: 0.75rem; margin-bottom: var(--space-md); }
.search-input { flex: 1; padding: 0.8rem 1.2rem; border: 1.5px solid var(--color-border); border-radius: var(--radius-sm); font-family: var(--font-sans); font-size: 0.9rem; background: var(--color-white); color: var(--color-text-primary); transition: border-color var(--transition); outline: none; }
.search-input:focus { border-color: var(--color-forest-mid); }
.filter-row { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: var(--space-md); }
.filter-btn { padding: 0.4rem 1rem; border: 1.5px solid var(--color-border); border-radius: 20px; font-family: var(--font-sans); font-size: 0.8rem; font-weight: 500; background: var(--color-white); color: var(--color-text-muted); cursor: pointer; transition: all var(--transition); }
.filter-btn:hover,
.filter-btn.active { background: var(--color-forest); color: var(--color-white); border-color: var(--color-forest); }

/* ============================================================
   FORM
   ============================================================ */
.form-group   { margin-bottom: 1.25rem; }
.form-label   { display: block; font-size: 0.82rem; font-weight: 500; color: var(--color-text-primary); margin-bottom: 0.4rem; }
.form-label span { color: var(--color-gold); margin-left: 0.25rem; }
.form-input,
.form-select,
.form-textarea { width: 100%; padding: 0.75rem 1rem; border: 1.5px solid var(--color-border); border-radius: var(--radius-sm); font-family: var(--font-sans); font-size: 0.9rem; background: var(--color-white); color: var(--color-text-primary); transition: border-color var(--transition); outline: none; }
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--color-forest-mid); }
.form-textarea { resize: vertical; min-height: 140px; }

/* ============================================================
   STEP FLOW
   ============================================================ */
.step-flow { display: flex; gap: 0; margin-bottom: var(--space-lg); overflow-x: auto; }
.step-item { flex: 1; min-width: 140px; padding: 1.25rem 1rem; background: var(--color-white); border: 1px solid var(--color-border); border-right: none; position: relative; text-align: center; }
.step-item:last-child  { border-right: 1px solid var(--color-border); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.step-item:first-child { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.step-item::after  { content: ''; position: absolute; right: -10px; top: 50%; transform: translateY(-50%); border-left: 10px solid var(--color-border); border-top: 16px solid transparent; border-bottom: 16px solid transparent; z-index: 2; }
.step-item::before { content: ''; position: absolute; right: -9px; top: 50%; transform: translateY(-50%); border-left: 10px solid var(--color-white); border-top: 16px solid transparent; border-bottom: 16px solid transparent; z-index: 3; }
.step-item:last-child::after,
.step-item:last-child::before { display: none; }
.step-num   { width: 28px; height: 28px; background: var(--color-forest); color: var(--color-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; margin: 0 auto 0.5rem; }
.step-title { font-size: 0.82rem; font-weight: 700; color: var(--color-text-primary); }
.step-sub   { font-size: 0.72rem; color: var(--color-text-muted); margin-top: 0.2rem; }

/* ============================================================
   COMPANY TABLE
   ============================================================ */
.company-table { width: 100%; border-collapse: collapse; }
.company-table thead th { padding: 0.75rem 1rem; text-align: left; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-text-muted); border-bottom: 1.5px solid var(--color-border); background: var(--color-ivory); }
.company-table tbody tr { border-bottom: 1px solid var(--color-border-light); transition: background var(--transition); cursor: pointer; }
.company-table tbody tr:hover { background: var(--color-ivory); }
.company-table tbody td { padding: 1rem; font-size: 0.88rem; vertical-align: middle; }
.company-name    { font-weight: 700; color: var(--color-text-primary); }
.company-name-en { font-size: 0.75rem; color: var(--color-text-muted); display: block; }
.company-detail  { display: none; background: var(--color-white); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--space-lg); margin-top: var(--space-md); }
.company-detail.open { display: grid; grid-template-columns: 1fr 280px; gap: var(--space-lg); }

/* ============================================================
   CONTACT TYPES
   ============================================================ */
.contact-type-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; margin-bottom: var(--space-lg); }
.contact-type { padding: 1.25rem; background: var(--color-white); border: 1.5px solid var(--color-border); border-radius: var(--radius-md); text-align: center; cursor: pointer; transition: all var(--transition); }
.contact-type:hover,
.contact-type.active { border-color: var(--color-forest); background: rgba(26,58,42,0.04); }
.contact-type-icon  { font-size: 1.5rem; margin-bottom: 0.5rem; display: block; }
.contact-type-label { font-size: 0.82rem; font-weight: 700; color: var(--color-text-primary); }

/* ============================================================
   SEZ / MAP
   ============================================================ */
.sez-map-placeholder { width: 100%; height: 360px; background: linear-gradient(135deg, #e8f4ec 0%, #c8e6d4 100%); border-radius: var(--radius-lg); border: 1px solid var(--color-border); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 0.5rem; color: var(--color-forest-mid); font-size: 0.9rem; margin-bottom: var(--space-lg); position: relative; overflow: hidden; }
.sez-map-placeholder::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(0deg, transparent, transparent 30px, rgba(26,58,42,0.04) 30px, rgba(26,58,42,0.04) 31px), repeating-linear-gradient(90deg, transparent, transparent 30px, rgba(26,58,42,0.04) 30px, rgba(26,58,42,0.04) 31px); }
.sez-card { background: var(--color-white); border: 1px solid var(--color-border-light); border-radius: var(--radius-md); overflow: hidden; }
.sez-card-header { background: var(--color-forest); padding: 1.25rem; color: var(--color-white); }
.sez-card-body { padding: 1.25rem; }
.sez-spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 0.75rem; }
.sez-spec-label { font-size: 0.7rem; color: var(--color-text-muted); letter-spacing: 0.06em; text-transform: uppercase; }
.sez-spec-value { font-size: 0.9rem; font-weight: 700; color: var(--color-text-primary); margin-top: 0.15rem; }

/* ============================================================
   ABOUT PROFILE
   ============================================================ */
.about-profile { display: flex; gap: var(--space-lg); align-items: flex-start; background: var(--color-white); border: 1px solid var(--color-border-light); border-radius: var(--radius-lg); padding: var(--space-lg); }
.about-avatar  { width: 100px; height: 100px; border-radius: 50%; background: var(--color-forest); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; flex-shrink: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .grid-3, .grid-4      { grid-template-columns: repeat(2, 1fr); }
  .layout-sidebar,
  .layout-sidebar-left  { grid-template-columns: 1fr; }
  .step-flow            { flex-direction: column; }
  .step-item            { border-right: 1px solid var(--color-border); border-bottom: none; }
  .step-item:last-child { border-bottom: 1px solid var(--color-border); }
  .step-item::after,
  .step-item::before    { display: none; }
  .contact-type-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-grid          { grid-template-columns: 1fr 1fr; }
  .stats-bar-inner      { grid-template-columns: repeat(2, 1fr); }
  .hero-deco            { display: none; }
  .about-profile        { flex-direction: column; }
  .company-detail.open  { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .nav-links, .nav-cta       { display: none; }
  .nav-hamburger             { display: flex; margin-left: auto; }
  .news-item                 { grid-template-columns: 80px 1fr; }
  .news-img                  { width: 80px; height: 58px; }
  .contact-type-grid         { grid-template-columns: repeat(2, 1fr); }
  .footer-grid               { grid-template-columns: 1fr; }
  .stats-bar-inner           { grid-template-columns: repeat(2, 1fr); }
  .company-table th:nth-child(3),
  .company-table td:nth-child(3) { display: none; }
}
