/* ==========================
   Contact Container
========================== */
.contact-container {
  position: relative;
  width: 100%;
  min-height: auto;
  padding: 2rem;
  background-color: #fafafa;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================
   Form Container
========================== */
.form {
  width: 100%;
  /* max-width: 80rem; */
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  z-index: 1;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}


/* ==========================
   Contact Details Section
========================== */
.contact-details {
  padding: 2.3rem 2.2rem;
  position: relative;
}

.contact-details .title {
  color: #1abc9c;
}

.text {
  color: #333;
  margin: 1.5rem 0 2rem 0;
}

.information {
  display: flex;
  color: #555;
  margin: 0.7rem 0;
  align-items: center;
  font-size: 0.95rem;
}

.information .icon {
  width: 1rem;
  margin-right: 0.7rem;
}


/* Decorative Elements */
.contact-details:before {
  content: "";
  position: absolute;
  width: 8rem;
  height: 7rem;
  border: 1.5rem solid #1abc9c;
  border-radius: 50%;
  bottom: -5rem;
  right: 4rem;
  opacity: 0.3;
}

.big-circle {
  position: absolute;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  background: var(--background);
  bottom: 50%;
  right: 50%;
  transform: translate(-40%, 38%);
}

.big-circle:after {
  content: "";
  position: absolute;
  width: 22rem;
  height: 22rem;
  background-color: #fafafa;
  border-radius: 50%;
  top: calc(50% - 11rem);
  left: calc(50% - 11rem);
}

.square {
  position: absolute;
  height: 25rem;
  top: 50%;
  left: 50%;
  transform: translate(181%, 11%);
  opacity: 0.2;
}

/* ==========================
   Contact Locations Section
========================== */
.contactMethod {
  background: var(--background);
  height: 10rem;
  padding: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  box-shadow: var(--box-shadow);
  margin-top: 6rem;
  margin-bottom: 5rem;
  text-align: left;
  overflow-y: visible;
  gap: 1rem;
}

.method {
  background: #ebf2fa;
  padding: 1rem;
  border-radius: 2rem;
  transition: width 0.4s linear;
  color: var(--white);
  text-align: center;
  
  
}
.method-info{
  display: flex;
  margin: 0.7rem 0;
  align-items: center;
  text-align: left;
  color: var(--white);
}

.method:hover {
  box-shadow: 0 3rem 3rem rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.method h4 {
  margin: 1rem 0;
  color: var(--white);
}

.method-info p {
  color: var(--white);
}

/* Different Backgrounds for Each Location */
.method:first-child {
  background: rgba(138, 118, 166, 0.78);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.method:nth-child(2) {
  background: rgba(84, 181, 191, 0.76);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.method:nth-child(3) {
  background: rgba(142, 166, 91, 0.66);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(15.3px);
  -webkit-backdrop-filter: blur(15.3px);
}

/* Contact Icons */
.contactIcon {
  font-size: 1rem;
  color: var(--primaryColor);
  padding: 0.5rem;
  width: 1rem;
  margin-right: 0.7rem;
}
