﻿/* ============================================================
   MOXIMTECH – ABOUT US PAGE STYLES
   ============================================================ */

/* ── PAGE HERO ─────────────────────────────────────────── */
.page-hero {
  position: relative;
  padding: 140px 0 110px;
  text-align: center;
  overflow: hidden;
  background: var(--bg);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(0, 62, 117,0.06) 0%, transparent 55%),
              radial-gradient(ellipse at 80% 30%, rgba(90,144,184,0.04) 0%, transparent 45%),
              linear-gradient(160deg, #eef5fc 0%, #ffffff 100%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite;
}
.orb1 {
  width: 400px; height: 400px;
  background: rgba(0, 62, 117,0.06);
  top: -80px; left: -80px;
}
.orb2 {
  width: 300px; height: 300px;
  background: rgba(90,144,184,0.04);
  bottom: -60px; right: -60px;
  animation-delay: -4s;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-20px); }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 62, 117,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 62, 117,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.5) 20%, rgba(0,0,0,0.5) 80%, transparent);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}
.page-hero-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 14px 0 20px;
  color: var(--text-dark);
}
.page-hero-sub {
  font-size: 17px;
  color: var(--muted);
  letter-spacing: 0.15em;
}

/* ── SHARED CONTAINER ──────────────────────────────────── */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── ABOUT ROW ─────────────────────────────────────────── */
.about-row {
  padding: 110px 0;
  background: var(--bg);
}
.about-row.alt-bg { background: var(--bg2); }

.about-split {
  display: flex;
  align-items: center;
  gap: 72px;
}
.about-split.reverse { flex-direction: row-reverse; }

.about-img-wrap {
  flex: 0 0 45%;
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%;
  display: block;
  border-radius: var(--r-lg);
  border: 1px solid var(--glass-border);
  transition: transform 0.5s var(--ease);
}
.about-img-wrap:hover img { transform: scale(1.03); }

.img-border-glow {
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  box-shadow: none;
  pointer-events: none;
}

.about-text { flex: 1; }
.about-text .section-title { margin: 10px 0 24px; }
.about-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 16px;
}

/* ── CULTURE SECTION ───────────────────────────────────── */
.culture-section {
  padding: 110px 0 120px;
  background: var(--bg);
  border-top: 1px solid var(--glass-border);
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-head .section-subtitle { margin: 14px auto 0; }

.culture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.culture-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 60, 120, 0.06);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.culture-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 62, 117,0.25);
  box-shadow: 0 8px 32px rgba(0, 60, 120, 0.10);
}

.culture-img {
  height: 200px;
  overflow: hidden;
  background: var(--bg3);
}
.culture-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
  display: block;
}
.culture-card:hover .culture-img img { transform: scale(1.05); }

.culture-content { padding: 28px; }
.culture-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--glass-border);
}

.culture-list { list-style: none; }
.culture-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 14px;
}
.culture-list li:last-child { border-bottom: none; }

.culture-key {
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  min-width: 60px;
}
.culture-val { color: var(--muted); line-height: 1.5; }

.culture-list.single li {
  padding-left: 16px;
  position: relative;
}
.culture-list.single li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
}
.culture-list.single .culture-val { color: var(--text-secondary); }

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 960px) {
  .culture-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .about-split, .about-split.reverse { flex-direction: column; gap: 36px; }
  .about-img-wrap { flex: 0 0 auto; width: 100%; }
  .about-row, .culture-section { padding: 60px 0; }
  .page-hero { padding: 80px 0 60px; }
}

@media (max-width: 600px) {
  .culture-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .about-row, .culture-section { padding: 48px 0; }
}
