/* ═══════════════════════════════════════
   SISTER.CSS — HMC GROUP
═══════════════════════════════════════ */

/* ── PAGE HEADER ── */
.page-header {
  margin-top: 88px;
  height: 280px;
  background: var(--navy);
  display: flex;
  align-items: center;
  padding: 0 80px;
  position: relative;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,32,88,0.72) 0%, rgba(8,40,120,0.45) 100%);
  z-index: 1;
}

.page-header-content {
  position: relative;
  z-index: 3;
  animation: fadeUp 0.9s ease both;
}

.page-header-h1 {
  font-size: 46px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}

.page-header-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  line-height: 1.7;
}

/* ── SISTER SECTION ── */
.sister-section {
  padding: 96px 80px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* ── دوائر الخلفية — نفس ستايل السيكتورز ── */
.sister-section::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 50px solid rgba(8,40,120,0.03);
  pointer-events: none;
}

.sister-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 40px solid rgba(216,160,48,0.04);
  pointer-events: none;
}

.sister-circle {
  position: absolute;
  border-radius: 50%;
  border: 30px solid rgba(8,40,120,0.03);
  pointer-events: none;
  top: 50%;
  right: 10%;
  width: 180px;
  height: 180px;
  transform: translateY(-50%);
}

/* ── GRID ── */
.sister-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── LOGO ── */
.sister-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sister-logo-float {
  max-width: 320px;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  animation: floatUpDown 4s ease-in-out infinite;
}

@keyframes floatUpDown {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-16px); }
}

/* ── CONTENT ── */
.sister-name {
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.2;
}

.sister-text {
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.85;
}