.contact-container {
  max-width: 1600px;
  width: 100%;
  background: #fff;
  margin: 0 auto;
  padding: 2rem 3rem;
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  /* box-shadow: 0 4px 14px rgb(26 41 86 / 0.2); */
}

.contact-container  h2 {
  font-family: var(--head-font);
  font-size: 35px;
  margin-bottom: 15px;
  color: var(--blue);
  text-align: center;
}

p.description {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 4rem;
}
.info-block p{
  font-size: 18px;
  font-weight: 500;
  color: #fff;

  
}
.contact-main {
  display: flex;
  gap: 10rem;
  flex-wrap: wrap;
}

/* Left form */
.contact-form {
  flex: 1 1 500px;
}

.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-row > div {
  flex: 1;
}

label {
  font-size: 15px;
  font-weight: 600;
  color: var(--blue);
  display: block;
  margin-bottom: 10px;
}

input[type="text"],
input[type="email"],
textarea,
select {
  width: 100%;
  padding: 0.5rem 0.7rem;
  border-radius: 20px;
  border: 1.5px solid #c3c7d5;
  font-family: var(--body-font);
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--blue);
}

textarea {
  resize: vertical;
  min-height: 100px;
  border-radius: 12px;
}

.send-btn {
  margin-top: 1rem;
  padding: 0.6rem 2.5rem;
  border: none;
  border-radius: 20px;
  background-color: var(--blue);
  color: white;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.send-btn:hover {
  background-color: var(--golden);
}

/* Right contact info */
.contact-info {
  flex: 1 1 400px;
  background-color: var(--blue);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info h3 {
  margin-top: 0;
  font-family: var(--head-font);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.info-block {
  margin-bottom: 1.5rem;
}

.info-block span {
  display: block;
  font-size: 18px;
  margin-top: 0.6rem;
  color: #fff;
}

.contact-info .icon-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #fff;
  color: var(--blue);
  border-radius: 50%;
}

/* .social-icons {
    display: flex;
    gap: 12px;
    color: var(--golden);
  } */
.social-icons a {
  gap: 15px;
  text-decoration: none;
  color: var(--golden);
  font-size: 16px;
  margin-right: 12px;
}

.social-icons div {
  width: 28px;
  height: 28px;
  background-color: #4b568b;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.social-icons div:hover {
  background-color: var(--golden);
}

/* Responsive */

@media (max-width: 768px) {
    .contact-main {
    flex-direction: column;
    gap: 0.6rem;
  }

  .contact-info {
    width: 100%;
    margin-top: 2rem;
    padding: 1.5rem;
  }
  .form-row {
    flex-direction: column; 
  
  }

  .form-row > div {
    width: 100%;
  }

  .contact-container{
    padding: 0.6rem 0.6rem;
  }
  select,
  input[type="text"],
  input[type="email"],
  textarea {
    width: 100%;
  }
}