/* ============================================================
   INFOMEAX – Light Theme Stylesheet
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --accent:     #3F8C6F;        /* gold accent */
  --accent-dk:  #3C8066;
  --bg:         #ffffff;
  --bg-light:   #f7f7f5;
  --text:       #1a1a1a;
  --text-muted: #6b6b6b;
  --border:     #e2e2e2;
  --font-head:  'Archivo Black', system-ui, sans-serif;
  --font-body:  'Inter', system-ui, sans-serif;
  --radius:     0px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); line-height: 1.6; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

/* ---------- Utilities ---------- */
.container    { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.section      { padding: 20px 0; }
.bg-white     { background: var(--bg); }
.bg-light     { background: var(--bg-light); }
.accent       { color: var(--accent); }
.mt-4         { margin-top: 1.5rem; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform 0.2s;
}
.btn-primary  { background: var(--text); color: #fff; }
.btn-primary:hover { background: var(--accent); transform: translateY(-1px); }
.btn-outline  { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Section Labels ---------- */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.label-line { width: 24px; height: 1px; background: var(--accent); flex-shrink: 0; }
.label-text { font-size: 10px; font-weight: 700; letter-spacing: 0.35em; text-transform: uppercase; color: var(--accent); }

.section-heading {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 34px);
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 40px;
  line-height: 1.2;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0ms);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
#site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.logo {
  font-family: var(--font-head);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
}
.logo span { color: var(--accent); }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.desktop-nav a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}
.desktop-nav a:hover,
.desktop-nav a.nav-active { color: var(--accent); }

.header-right { display: flex; align-items: center; gap: 12px; }

/* Hamburger */
.hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  background: #fff;
  border-top: 1px solid var(--border);
  gap: 4px;
}
.mobile-nav a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: color var(--transition);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover,
.mobile-nav a.nav-active { color: var(--accent); }
.mobile-nav .btn { justify-content: center; margin-top: 12px; }
.mobile-nav.open { display: flex; }
.mobile-nav .nav-sub { padding-left: 16px; font-size: 10px; letter-spacing: 0.18em; color: var(--text-muted); opacity: .85; }
.mobile-nav .nav-sub:hover, .mobile-nav .nav-sub.nav-active { color: var(--accent); opacity: 1; }

/* Nav dropdown (desktop) */
.nav-has-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition);
}
.nav-dropdown-toggle::after { content: '▾'; font-size: 8px; line-height: 1; }
.nav-has-dropdown:hover .nav-dropdown-toggle { color: var(--accent); }
.nav-dropdown-toggle.nav-active { color: var(--accent); }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 12px;
  z-index: 300;
  min-width: 200px;
}
/* bridge vô hình lấp khoảng trống giữa toggle và menu */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 12px;
}
.nav-dropdown-inner {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 8px 28px rgba(0,0,0,.10);
  padding: 6px 0;
}
.nav-has-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.nav-active { color: var(--accent); background: #f8f8f8; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 65vh;
  min-height: 400px;
  overflow: hidden;
}

.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.55) 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 60px 72px;
  max-width: 780px;
}

.hero-text { display: none; }
.hero-text.active {
  display: block;
  animation: fadeUp 0.7s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 48px);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.hero-subtitle {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.hero-dots {
  position: absolute;
  bottom: 28px; right: 60px;
  z-index: 3;
  display: flex;
  gap: 8px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none; cursor: pointer;
  transition: all 0.3s;
}
.dot.active { background: var(--accent); width: 24px; border-radius: 4px; }

/* ============================================================
   SERVICES
   ============================================================ */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  display: block;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.service-img {
  overflow: hidden;
  aspect-ratio: 4/3;
  margin-bottom: 12px;
}
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  /*filter: grayscale(60%);*/
  transition: transform 0.5s ease, filter 0.5s ease;
}
.service-card:hover .service-img img { transform: scale(1.05); filter: grayscale(0%); }

.service-card h3 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.5;
  transition: color var(--transition);
}
.service-card:hover h3 { color: var(--accent); }

.view-more {
  display: inline-block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.3s, transform 0.3s;
}
.service-card:hover .view-more { opacity: 1; transform: translateX(0); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img { overflow: hidden; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }

.about-text h2 {
  font-family: var(--font-head);
  font-size: clamp(22px, 2.8vw, 32px);
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 20px;
}
.about-text p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--accent);
}
.stat-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ============================================================
   BANNER
   ============================================================ */
.banner {
  background: var(--bg-light);
  border: 1px solid var(--border);
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.banner-text h2 {
  font-family: var(--font-head);
  font-size: clamp(20px, 2.5vw, 30px);
  text-transform: uppercase;
  line-height: 1.2;
  margin-top: 8px;
}

/* ============================================================
   PROJECTS
   ============================================================ */
.project-card { cursor: pointer; display: block; text-decoration: none; color: inherit; }
.project-img {
  overflow: hidden;
  aspect-ratio: 4/3;
  margin-bottom: 12px;
}
.project-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(50%);
  transition: transform 0.5s ease, filter 0.5s ease;
}
.project-card:hover .project-img img { transform: scale(1.05); filter: grayscale(0%); }

.project-market {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.8;
  margin-bottom: 4px;
}
.project-card h3 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 6px;
  transition: color var(--transition);
}
.project-card:hover h3 { color: var(--accent); }
.project-card p { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   PARTNERS / MARQUEE
   ============================================================ */
.marquee-outer {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  margin-top: 32px;
}
.marquee-track {
  display: flex;
  gap: 56px;
  align-items: center;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track img {
  height: 40px;
  max-width: 120px;
  object-fit: contain;
 /* opacity: 0.55;*/
 /* filter: grayscale(100%);*/
  transition: opacity 0.3s, filter 0.3s;
  flex-shrink: 0;
}
.marquee-track img:hover { opacity: 1; filter: grayscale(0%); }

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}
.footer .section-heading { margin-bottom: 48px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.contact-list { list-style: none; }
.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text);
  margin-bottom: 12px;
}
.contact-list svg { color: var(--accent); flex-shrink: 0; }
.contact-list a:hover { color: var(--accent); }

.footer-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 16px;
}

.market-list { list-style: none; }
.market-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.market-list li:hover { color: var(--text); }
.market-list .num { font-size: 10px; font-family: monospace; color: var(--accent); opacity: 0.5; }

.link-list { list-style: none; }
.link-list li { margin-bottom: 8px; }
.link-list a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.link-list a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom .logo { font-size: 13px; }
.footer-bottom span { font-size: 11px; color: var(--text-muted); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 11px; color: var(--text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--accent); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 56px 0; }
  .desktop-nav, .header-right .btn { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 0 24px 64px; }
  .hero-dots { right: 24px; }
  .banner { flex-direction: column; align-items: flex-start; padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   CARD DESCRIPTION (Services / Projects)
   ============================================================ */
.card-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 4px;
}
.section-empty {
  font-size: 13px;
  color: var(--text-muted);
  padding: 16px 0;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}
.contact-intro {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}
.contact-list { list-style: none; }
.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text);
  margin-bottom: 14px;
}
.contact-list svg { color: var(--accent); flex-shrink: 0; }
.contact-list a:hover { color: var(--accent); }

.contact-form-wrap {}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-group { display: flex; flex-direction: column; gap: 6px; }
.cf-group label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
.cf-group label span { color: var(--accent); }
.cf-group input,
.cf-group textarea {
  padding: 10px 14px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color 0.2s;
  width: 100%;
}
.cf-group input:focus,
.cf-group textarea:focus { outline: none; border-color: var(--accent); }
.cf-group textarea { resize: vertical; min-height: 100px; }

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(46,158,107,0.08);
  border-left: 3px solid #2e9e6b;
  color: #2e9e6b;
  font-size: 14px;
  margin-bottom: 16px;
}
.form-error-msg {
  padding: 12px 16px;
  background: rgba(217,79,79,0.08);
  border-left: 3px solid #d94f4f;
  color: #d94f4f;
  font-size: 13px;
  margin-bottom: 16px;
}

/* ============================================================
   DETAIL PAGE (service.php / project.php)
   ============================================================ */
.detail-hero {
  margin-top: 60px; /* accounts for fixed header height */
  height: 420px;
  overflow: hidden;
  position: relative;
}
.detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
}
.detail-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px 60px;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%);
}
.detail-hero-overlay .detail-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.detail-hero-overlay h1 {
  font-family: var(--font-head);
  font-size: clamp(22px, 3.5vw, 42px);
  color: #fff;
  text-transform: uppercase;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.detail-body { padding: 56px 0; }
.detail-body .container { max-width: 860px; }
.detail-content { font-size: 15px; line-height: 1.85; color: var(--text-muted); }
.detail-content p  { margin-bottom: 20px; }
.detail-content ul, .detail-content ol { margin: 0 0 20px 24px; }
.detail-content li { margin-bottom: 6px; }
.detail-content strong { color: var(--text); }
.detail-content h2, .detail-content h3 { font-family: var(--font-head); color: var(--text); margin: 28px 0 12px; }
.detail-content a { color: var(--accent); text-decoration: underline; }
.detail-content blockquote { border-left: 3px solid var(--accent); padding-left: 16px; color: var(--text-muted); margin: 20px 0; }

/* About paragraph (supports both plain text and HTML from editor) */
.about-para { font-size: 15px; line-height: 1.8; color: var(--text-muted); margin-bottom: 16px; }
.about-para p  { margin-bottom: 12px; }
.about-para ul, .about-para ol { margin: 0 0 12px 20px; }
.about-para strong { color: var(--text); }

/* About text block (full-width section below the intro) */
.about-text-block {
  max-width: 860px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-muted);
}
.about-text-block p  { margin-bottom: 20px; }
.about-text-block ul,
.about-text-block ol { margin: 0 0 20px 24px; }
.about-text-block li { margin-bottom: 8px; }
.about-text-block strong { color: var(--text); font-weight: 600; }
.about-text-block h2,
.about-text-block h3 {
  font-family: var(--font-head);
  color: var(--text);
  text-transform: uppercase;
  margin: 28px 0 12px;
  font-size: clamp(16px, 2vw, 22px);
}
.about-text-block a { color: var(--accent); text-decoration: underline; }
.about-text-block blockquote {
  border-left: 3px solid var(--accent);
  padding: 12px 20px;
  color: var(--text-muted);
  background: rgba(200,168,75,0.04);
  margin: 20px 0;
  font-style: italic;
}
.detail-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 36px;
  transition: color 0.2s;
}
.detail-back:hover { color: var(--accent); }

/* ============================================================
   RESPONSIVE (additions)
   ============================================================ */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  .cf-row { grid-template-columns: 1fr; }
  .detail-hero { height: 280px; }
  .detail-hero-overlay { padding: 24px; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: var(--accent); opacity: 0.4; }
::selection { background: rgba(200,168,75,0.25); }

/* ============================================================
   PAGE BANNER (about / services / projects / partners / contact)
   ============================================================ */
.page-banner {
 /* margin-top: 60px;*/
  height: 280px;
  background-color: var(--text);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 100%);
}
.page-banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 48px;
}
.page-banner-overlay h1 {
  font-family: var(--font-head);
  font-size: clamp(28px, 5vw, 52px);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.page-banner-overlay .section-label .label-text { color: var(--accent); }
.page-banner-overlay .section-label .label-line  { background: var(--accent); }

/* ============================================================
   PARTNERS PAGE
   ============================================================ */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 32px 24px;
  padding-top: 8px;
}
.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px 16px;
  border: 1px solid var(--border);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.partner-item:hover { border-color: var(--accent); box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.partner-item img {
  width: 100%;
  max-width: 120px;
  height: 56px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.7;
  transition: filter var(--transition), opacity var(--transition);
}
.partner-item:hover img { filter: grayscale(0); opacity: 1; }
.partner-item p {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

/* Why grid (partners page) */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 8px;
}
.why-item { padding: 28px 0; border-top: 2px solid var(--border); transition: border-color var(--transition); }
.why-item:hover { border-color: var(--accent); }
.why-num {
  font-family: var(--font-head);
  font-size: 32px;
  color: var(--accent);
  margin-bottom: 12px;
  opacity: 0.6;
}
.why-item h3 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.why-item p  { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* Office list (contact page) */
.office-list { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.office-item h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 4px;
}
.office-item p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   RESPONSIVE (page-level)
   ============================================================ */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .page-banner { height: 220px; }
  .page-banner-overlay { padding-bottom: 32px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .partners-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
}
@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
}
