/* نفس ستايل الهيدر في باقي الصفحات */
.page-hero{
  padding: 70px 0;
  background:
    radial-gradient(900px 420px at 80% 20%, rgba(46,197,255,.16), transparent 60%),
    radial-gradient(700px 380px at 20% 0%, rgba(31,110,212,.14), transparent 60%),
    linear-gradient(135deg, var(--ice-dark), #123B63);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-hero::after{
  content:"";
  position:absolute;
  inset: -120px -220px auto auto;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
}

.page-hero-title{
  font-weight: 800;
  font-size: clamp(34px, 4vw, 54px);
  margin: 0;
}

.page-hero-subtitle{
  margin-top: 12px;
  color: rgba(255,255,255,.75);
  font-size: 18px;
}

/* كرت الفورم */
.contact-card{
  background: #fff;
  border-radius: 18px;
  padding: 26px;
  border: 1px solid #eef3f8;
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

.contact-card .form-control{
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px solid #e8eef6;
}

.contact-card .form-control:focus{
  border-color: rgba(46,197,255,.6);
  box-shadow: 0 0 0 .25rem rgba(46,197,255,.15);
}

/* كرت المعلومات (الجزء الأزرق) */
.info-card{
  background: linear-gradient(135deg, #1b3a5d, #0f2f4d);
  color: #fff;
  border-radius: 22px;
  padding: 28px;
  height: 100%;
  box-shadow: 0 25px 70px rgba(0,0,0,.18);
  position: relative;
  overflow: hidden;
}

.info-card::after{
  content:"";
  position:absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  top: -180px;
  left: -180px;
}

.info-title{
  position: relative;
  font-weight: 800;
  font-size: 28px;
  margin-bottom: 10px;
}

.info-subtitle{
  position: relative;
  color: rgba(255,255,255,.75);
  line-height: 1.9;
  margin-bottom: 18px;
}

.info-item{
  position: relative;
  display: flex;
  gap: 12px;
  padding: 14px 0;
  align-items: flex-start;
}

.info-icon{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
}

.info-label{
  font-weight: 700;
  margin-bottom: 2px;
  color: rgba(255,255,255,.85);
}

.info-value{
  color: rgba(255,255,255,.75);
  line-height: 1.8;
}

.info-link{
  color: #cfefff;
  text-decoration: none;
}
.info-link:hover{ text-decoration: underline; }

.info-divider{
  height: 1px;
  background: rgba(255,255,255,.12);
  margin: 14px 0 18px;
}