/* ══════════════════════════════════════════════════════════
   THE SQUAD SECTION
   ══════════════════════════════════════════════════════════ */
.squad-section {
  background: var(--navy-medium);
  padding: 90px 0;
}

.squad-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.squad-card {
  background: rgba(0, 242, 255, 0.04);
  border: 1px solid rgba(0, 242, 255, 0.12);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.squad-card:hover {
  border-color: var(--cyan);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 242, 255, 0.12);
}

.squad-photo {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
}

.squad-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
  display: block;
}

.squad-card:hover .squad-photo img {
  transform: scale(1.05);
}

.squad-info {
  padding: 22px 20px 26px;
}

.squad-info h4 {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.squad-role {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.squad-info p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray-light);
  margin: 0;
}

@media (max-width: 1024px) {
  .squad-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .squad-grid { grid-template-columns: 1fr; }
  .squad-photo { height: 320px; }
}


/* ══════════════════════════════════════════════════════════
   THE HEADQUARTER SECTION
   ══════════════════════════════════════════════════════════ */
.hq-section {
  background: var(--navy-dark);
  padding: 90px 0;
}

.hq-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: center;
}

.hq-map {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 242, 255, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  line-height: 0;
}

.hq-map iframe {
  width: 100%;
  height: 440px;
  display: block;
  border: none;
}

.hq-info h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hq-info h2 span {
  color: var(--cyan);
}

.hq-info p {
  color: var(--gray-light);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 26px;
}

.hq-details {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hq-details li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.hq-details li i {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(0, 242, 255, 0.08);
  border: 1px solid rgba(0, 242, 255, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 15px;
}

.hq-details li strong {
  display: block;
  font-size: 14px;
  color: #fff;
  margin-bottom: 2px;
}

.hq-details li span,
.hq-details li span a {
  font-size: 13px;
  color: var(--gray-light);
}

.hq-details li span a {
  color: var(--cyan);
  text-decoration: none;
}

.hq-details li span a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .hq-grid { grid-template-columns: 1fr; }
  .hq-map iframe { height: 320px; }
  .hq-info h2 { font-size: 28px; }
}
