/* =============================================
   Company Page Styles
   ============================================= */

.header-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.company-page {
  padding-top: 80px;
}

.company-hero {
  position: relative;
  text-align: center;
  padding: 80px 20px 60px;
  overflow: hidden;
}

.company-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.company-hero-inner {
  position: relative;
  z-index: 1;
}

.company-hero-title {
  font-family: "Futura", "Poppins", sans-serif;
  font-weight: 900;
  font-size: 56px;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.company-hero-sub {
  font-weight: 500;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.08em;
  margin-top: 8px;
}

.company-content {
  max-width: 640px;
  margin: 0 auto;
  padding: 60px 20px 80px;
}

.company-mission {
  font-weight: 900;
  font-size: 28px;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 48px;
  letter-spacing: 0.04em;
  background: linear-gradient(90deg, #5380d3, #2b426d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Company Table --- */
.company-table {
  margin-bottom: 48px;
}

.company-row {
  display: flex;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.company-head {
  width: 140px;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  background: linear-gradient(90deg, #5380d3, #2b426d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.company-data {
  flex: 1;
  font-size: 15px;
  color: #353030;
  line-height: 1.75;
}

/* --- Map --- */
.company-map {
  border-radius: 8px;
  overflow: hidden;
}

.company-map iframe {
  display: block;
}

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 768px) {
  .company-hero {
    padding: 60px 16px 40px;
  }

  .company-hero-title {
    font-size: 36px;
  }

  .company-content {
    padding: 40px 16px 60px;
  }

  .company-mission {
    font-size: 17px;
  }

  .company-row {
    flex-direction: column;
    gap: 4px;
    padding: 16px 0;
  }

  .company-head {
    width: 100%;
  }

  .company-map iframe {
    height: 300px;
  }
}
