/**
 * About Page Styles
 * Semai Aviation - About Us
 */

/* ========================================
   SECTION 1: Hero Cover
   ======================================== */
.about .privacy-cover-frame__content {
  width: 100%;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  padding-top: 40px;
  padding-bottom: 40px;
}

.about-cover__title {
  font-family: 'Mont', sans-serif;
  font-weight: 600;
  font-size: 120px;
  line-height: 80px;
  letter-spacing: -7.2px;
  color: #FFFFFF;
  flex: 1;
  display: flex;
  align-items: center;
  margin: 0;
}

.about-cover__info {
  display: grid;
  grid-template-columns: var(--layout-kicker-col) 1fr;
  gap: var(--layout-kicker-gap);
  align-items: start;
  padding-top: 32px;
  position: relative;
}

.about-cover__info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100vw - 42px);
  max-width: calc(100vw - 42px);
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.about-cover__label {
  font-family: 'Mont', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.28px;
}

.about-cover__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.about-cover__text {
  font-family: 'Mont', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0.16px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0;
}

/* ========================================
   SECTION 2: Full-Width Photo
   ======================================== */
.about-photo {
  margin-left: calc(var(--page-gutter) * -1);
  width: calc(100% + (var(--page-gutter) * 2));
  overflow: hidden;
}

.about-photo__img {
  width: 100%;
  height: 800px;
  object-fit: cover;
  display: block;
}

/* ========================================
   SECTION 3: Keywords Bar
   ======================================== */
.about-keywords {
  padding: 40px 0;
}

.about-keywords__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.about-keywords__item {
  font-family: 'Mont', sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.4px;
  text-transform: uppercase;
  color: var(--color-primary);
}

/* ========================================
   SECTION 4: Mission Statement
   ======================================== */
.about-mission {
  padding: 80px 0 60px;
}

.about-mission__statement {
  font-family: 'Mont', sans-serif;
  font-weight: 600;
  font-size: 64px;
  line-height: 80px;
  letter-spacing: -2.56px;
  color: #1F1F1F;
  margin: 0;
}

.about-mission__highlight {
  color: var(--color-primary);
}

/* ========================================
   SECTION 5: Company Story + Images
   ======================================== */
.about-story {
  padding: 60px 0 80px;
}

.about-story .container {
  max-width: 1250px;
}

.about-story__wrapper {
  display: flex;
  gap: 120px;
  align-items: flex-start;
}

.about-story__text {
  flex: 1;
}

.about-story__text p {
  font-family: 'Mont', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: -0.36px;
  color: #1F1F1F;
  margin: 0 0 24px;
}

.about-story__text p:last-child {
  margin-bottom: 0;
}

.about-story__images {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-story__image {
  border-radius: 20px;
  overflow: hidden;
}

.about-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ========================================
   SECTION 6: Team Section
   ======================================== */
.about-team {
  padding: 80px 0;
}

.about-team__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 60px;
}

.about-team__label {
  font-family: 'Mont', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.28px;
  text-transform: uppercase;
  color: #1F1F1F;
  opacity: 0.5;
  margin-bottom: 16px;
}

.about-team__title {
  font-family: 'Mont', sans-serif;
  font-weight: 600;
  font-size: 64px;
  line-height: 80px;
  letter-spacing: -2.56px;
  color: #1F1F1F;
  margin: 0;
}

.about-team__wrapper {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border-dark-soft);
  border-bottom: 1px solid var(--border-dark-soft);
  padding: 0;
}

.about-team__left {
  flex: 0 0 40%;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-team__photo {
  width: 80%;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 24px;
}

.about-team__photo img {
  width: 100%;
  height: auto;
  min-height: 300px;
  object-fit: cover;
  display: block;
}

.about-team__manifesto {
  font-family: 'Mont', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0.16px;
  text-transform: uppercase;
  color: #1F1F1F;
  margin: 0;
}

.about-team__right {
  flex: 1;
  border-left: 1px solid var(--border-dark-soft);
}

.about-team__members {
  display: flex;
  flex-direction: column;
}

/* Team Member Card */
.team-member {
  border-bottom: 1px solid var(--border-dark-soft);
  transition: background-color 0.3s ease, border-radius 0.3s ease;
}

.team-member:last-child {
  border-bottom: none;
}

.team-member__header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.team-member__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.team-member__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-member__info {
  flex: 1;
}

.team-member__name {
  font-family: 'Mont', sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.26px;
  color: #1F1F1F;
  margin: 0;
  transition: color 0.3s ease;
}

.team-member__title {
  font-family: 'Mont', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.16px;
  text-transform: uppercase;
  color: #1F1F1F;
  opacity: 0.5;
  flex-shrink: 0;
  margin-right: 16px;
  transition: all 0.3s ease;
}

.team-member__toggle {
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.team-member__icon {
  font-family: 'Mont', sans-serif;
  font-weight: 400;
  font-size: 28px;
  color: #1F1F1F;
  transition: color 0.3s ease, transform 0.3s ease;
}

/* Active State */
.team-member.active {
  background-color: var(--color-primary);
  border-radius: 20px;
  border-bottom: none;
  margin: 8px 0;
}

.team-member.active .team-member__name,
.team-member.active .team-member__title,
.team-member.active .team-member__icon {
  color: #FFFFFF;
  opacity: 1;
}

.team-member.active .team-member__toggle {
  transform: rotate(45deg);
}

/* ========================================
   PROFILE DETAIL OVERLAY (Figma 59-1949)
   ======================================== */
.profile-detail {
  position: fixed;
  inset: 0;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s ease, opacity 0.3s ease;
}

.profile-detail.is-open {
  visibility: visible;
  opacity: 1;
}

.profile-detail__backdrop {
  position: absolute;
  inset: 0;
  background: #101010;
  opacity: 0.5;
}

.profile-detail__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 850px;
  max-width: 55vw;
  height: 100%;
  background: var(--color-primary);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.2);
  overflow: visible;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}

.profile-detail.is-open .profile-detail__panel {
  transform: translateX(0);
}

.profile-detail__close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 3;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: none;
  padding: 0;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.profile-detail__close svg {
  display: block;
  width: 70px;
  height: 70px;
}

.profile-detail__close:hover {
  opacity: 0.9;
}

.profile-detail__scroll {
  position: relative;
  z-index: 1;
  overflow-y: auto;
  height: 100%;
}

.profile-detail__pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.profile-detail__pattern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-detail__top {
  padding: 75px 60px 0 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}

.profile-detail__head {
  flex: 0 1 auto;
}

.profile-detail__label {
  font-family: 'Mont', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.28px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  display: block;
  margin-bottom: 12px;
}

.profile-detail__name {
  font-family: 'Mont', sans-serif;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -0.36px;
  color: #FFFFFF;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.profile-detail__title {
  font-family: 'Mont', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.16px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.profile-detail__image-wrap {
  flex-shrink: 0;
  width: 380px;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  background: #EC852F;
}

.profile-detail__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-detail__bottom {
  padding: 40px 60px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.profile-detail__contact-label {
  font-family: 'Mont', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.28px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  display: block;
  margin-bottom: 8px;
}

.profile-detail__contact .profile-detail__contact-label:nth-of-type(3) {
  margin-top: 24px;
}

.profile-detail__phone,
.profile-detail__email {
  font-family: 'Mont', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.16px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0 0 4px 0;
}

.profile-detail__linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.25);
  color: #FFFFFF;
  transition: opacity 0.2s ease, background 0.2s ease;
}

.profile-detail__linkedin:hover {
  opacity: 0.95;
  background: rgba(0, 0, 0, 0.35);
}

.profile-detail__linkedin img {
  width: 32px;
  height: 32px;
  display: block;
}

.profile-detail__bio {
  font-family: 'Mont', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.625;
  letter-spacing: -0.32px;
  color: #FFFFFF;
}

.profile-detail__bio p {
  margin: 0 0 16px 0;
}

.profile-detail__bio p:last-child {
  margin-bottom: 0;
}
