/* ====================================
   Company Page Specific Styles - Minimal
   ==================================== */

/* Company Profile */
.company-profile {
  padding: var(--spacing-5xl) 0;
  background-color: var(--bg-white) !important;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 60px,
      rgba(150, 194, 226, 0.08) 60px,
      rgba(150, 194, 226, 0.08) 62px
    ) !important;
}

.profile-table {
  max-width: 900px;
  margin: var(--spacing-2xl) auto 0 auto;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid rgba(150, 194, 226, 0.15);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.profile-table:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(150, 194, 226, 0.3);
}

.profile-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  border-bottom: 1px solid rgba(150, 194, 226, 0.15);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.profile-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--flowcial-blue);
  transform: scaleY(0);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.profile-row:hover {
  transform: translateX(4px);
  background: rgba(150, 194, 226, 0.03);
}

.profile-row:hover::before {
  transform: scaleY(1);
}

.profile-row:last-child {
  border-bottom: none;
}

.profile-label {
  padding: var(--spacing-xl) var(--spacing-lg);
  background: transparent;
  font-weight: var(--weight-bold);
  color: var(--text-black);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  font-size: var(--text-base);
  letter-spacing: 0.05em;
}

.profile-value {
  padding: var(--spacing-xl) var(--spacing-lg);
  color: var(--text-gray);
  line-height: 2;
  font-weight: var(--weight-light);
  font-size: var(--text-base);
}

.profile-value ul {
  list-style: none;
}

.profile-value ul li {
  margin-bottom: var(--spacing-sm);
  padding-left: var(--spacing-lg);
  position: relative;
}

.profile-value ul li:before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--text-gray-light);
}

/* Access Section */
.access {
  padding: var(--spacing-5xl) 0;
  background: var(--bg-gray-light);
}

.access-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-2xl);
  max-width: 1200px;
  margin: var(--spacing-2xl) auto 0 auto;
}

.access-item {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(150, 194, 226, 0.15);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-md);
}

.access-item:hover {
  border-color: rgba(150, 194, 226, 0.3);
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.access-label {
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  margin-bottom: var(--spacing-sm);
  color: var(--text-black);
  letter-spacing: 0.05em;
}

.access-text {
  font-size: var(--text-base);
  color: var(--text-gray);
  line-height: 1.8;
  font-weight: var(--weight-light);
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-container iframe {
  display: block;
  width: 100%;
}

/* Contact Section */
.contact-section {
  padding: var(--spacing-5xl) 0;
  background-color: var(--bg-white) !important;
  background-image:
    linear-gradient(135deg, rgba(150, 194, 226, 0.12) 0%, transparent 30%),
    linear-gradient(-135deg, rgba(150, 194, 226, 0.12) 0%, transparent 30%) !important;
}

.contact-description {
  font-size: var(--text-xl);
  text-align: center;
  color: var(--text-gray);
  margin-bottom: var(--spacing-3xl);
  line-height: 2.2;
  font-weight: var(--weight-light);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: var(--spacing-2xl);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(150, 194, 226, 0.15);
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-description:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(150, 194, 226, 0.3);
}

.contact-info {
  max-width: 600px;
  margin: 0 auto var(--spacing-2xl) auto;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-lg);
  padding: var(--spacing-2xl);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(150, 194, 226, 0.15);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.contact-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--flowcial-blue), transparent);
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-item:hover {
  border-color: rgba(150, 194, 226, 0.3);
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.contact-item:hover::before {
  transform: scaleX(1);
}

.contact-label {
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--text-black);
}

.contact-value {
  font-size: var(--text-xl);
  font-weight: var(--weight-medium);
  color: var(--text-black);
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-value:hover {
  color: var(--text-gray);
}

/* Responsive */
@media (max-width: 767px) {
  .profile-row {
    grid-template-columns: 1fr;
  }

  .profile-label {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
  }

  .access-info {
    grid-template-columns: 1fr;
  }

  .map-container iframe {
    height: 400px;
  }
}
