*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.body{
    background-color: #F7F7F7;
    position: relative;
}

:root{
  --barka-blue: #1B3350;
  --light-blue: #C7D7DF;
  --text-black: #111;
}






/* contact_us_section */
/* CONTACT SECTION (map background like figma) */
.contact_us_section{
  padding: 220px 0 120px;              /* space for fixed navbar */
  background: #fff;
  background-image: url("../img/contact_us/map.8d9927183e48.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* Center card like figma */
.contact_card{
  width: min(1020px, calc(100% - 160px));
  margin: 0 auto;

  display: flex;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  height: 100vh;

  box-shadow: 0px 0px 20px 5px rgba(0,0,0,0.12);
}

/* LEFT side */
.contact_card_left{
  flex: 1;
  padding: 40px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}

/* Logo row (like figma) */
.contact_logo{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 2rem;

}

.contact_logo_icon{ width: 58px; height: auto; }
.contact_logo_text{ width: 185px; height: auto; }

/* Text styling */
.contact_title{
  /* font-family: "Raleway", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1b3350;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem; */

    color: #678DB8;
font-family: Raleway;
font-size: 16px;
font-style: normal;
font-weight: 300;
line-height: 24px; /* 150% */
letter-spacing: 3.52px;
text-transform: uppercase;
}

.contact_block{ margin-bottom: 2rem; }

.contact_label{
  /* font-family: "Raleway", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1b3350;
  opacity: 0.75;
  margin-bottom: 0.5px; */
  color: #678DB8;
font-family: Raleway;
font-size: 16px;
font-style: normal;
font-weight: 300;
line-height: 24px; /* 150% */
letter-spacing: 3.52px;
text-transform: uppercase;
}

.contact_line{
  /* font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: #111;
  opacity: 0.85; */

  color: #000;

/* Body large */
font-family: Raleway;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 27px;
}

.contact_line.strong{
  font-weight: 600;
  opacity: 1;
}

/* simple social dots (replace with real icons if you want) */
.contact_socials{
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social_dot{
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-block;
  transition: transform .2s ease, box-shadow .2s ease;
}

.social_dot:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 18px rgba(0,0,0,0.18);
  cursor: pointer;
}

/* RIGHT side image */
.contact_card_right{
  flex: 1;
  min-height: 520px;
}

.contact_card_right img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* RESPONSIVE (mobile like figma) */
@media (max-width: 900px){

  .contact_us_section{
    padding: 150px 0 80px;
  }
  .contact_card{
    width: calc(100% - 32px);
    flex-direction: column;
    /* border-radius: 22px; */
    border-radius: 3px;
      height: auto;        /* instead of 100vh */
  min-height: 500px;  
  }

.contact_logo_icon{ width: 48px; height: auto; }
.contact_logo_text{ width: 140px; height: auto; }

.contact_logo{
  margin-bottom: 1rem;
}
  .contact_card_left{
    padding: 34px 42px;
  }

  .contact_card_right{
    display: none;
  }

  .contact_title{
    font-size: 22px;
    margin-bottom: 1rem;
  }

  .contact_block{
    margin-bottom: 2rem;
  }

  .contact_line{
    font-size: 16px;
    line-height: 24px;
  }

.social_dot{
  width: 40px;
  height: 40px;
}

}

