.wrapper-hiro {
  width: 100%;
  position: relative;
  z-index: 2;
}
.hiro-bglight{
    position: absolute;
    width: 100%;
  top: -30%;
  right: 0;
  height: auto;
  
  z-index: 1;
}
.hiro {
    position: relative;
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}
.hiro-right {
  width: 30%;
}
.hiro-right img {
  width: 100%;
  height: 100%;
}
.hiro-left {
  width: 50%;
}
.contactForm {
  padding: 30px 0;
  display: grid;
  place-items: center;
  width: 100%;
}

.contactForm__card {
  width: 100%;
  padding: 35px;
  border-radius: 28px;
  background: rgba(10, 9, 38, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

/* Row base */
.fRow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.fIcon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #f76c01;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  flex: 0 0 auto;
}

.fIcon svg {
  width: 22px;
  height: 22px;
}

.fInput {
  width: 100%;
  height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  outline: none;
  font-size: 14px;
}

.fInput::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

/* Split row (phone + select) */
.fRow--split {
  justify-content: space-between;
}

.fRow__left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

/* Select */
.fSelectWrap {
  position: relative;
  width: 170px;
  flex: 0 0 auto;
}

.fSelect {
  width: 100%;
  height: 46px;
  padding: 0 42px 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.85);
  outline: none;
  appearance: none;
  cursor: pointer;
  font-size: 14px;
}

.fSelectArrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: rgba(255, 255, 255, 0.65);
}

/* Triple row */
.fRow--triple {
  gap: 12px;
}

.fInput--mini {
  height: 44px;
}

.fSelectWrap--mini {
  width: 170px;
}

/* Button */
.fBtn {
  width: 100%;
  height: 52px;
  border: none;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  margin-top: 8px;
}

/* اگر کلاس گرادینت رو نداری */
.btn-primary-gradient {
  background: var(
    --primary-gradient,
    linear-gradient(to bottom right, #f76c01, #f98921)
  );
}
.info{
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
    padding-top: 10%;
}
.info-card{
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px;
    gap: 15px;
    border: 2px solid #1B1A44;
    border-radius: 55px !important;
}
.info-card h3{
color: var(--text);
font-size: 30px;
font-weight: 600;
}
.info-card span{
color: #454397;
font-size: 20px;
font-weight: 400;
}
.info-social{
        width: 20%;
    display: flex;
    
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    gap: 15px;
    border: 2px solid #1B1A44;
    border-radius: 55px !important;
    flex-wrap: wrap;
}
.info-social a{
    width: 18%;
}



@media(max-width:769px){
.hiro{
    width: 90%;
}
.hiro-right{
    width: 40%;
}
.info{
    width: 90%;
    flex-wrap: wrap;
    gap: 20px;
}
.info-card ,.info-social{
    width: 45%;
}
}



@media(max-width:430px){
.hiro{
    flex-direction: column-reverse;
}
.hiro-left{
    width: 100%;
}
.hiro-right{
    width: 70%;
}
.hiro-bglight{
    top: 30%;
}
.wrapper-hiro{
    padding-top: 30px;
}
.info{
    width: 95%;
    flex-wrap: wrap;
    gap: 20px;
}
.info-card ,.info-social{
    width: 100%;
}
}