@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

.contact-hero-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.left {
  width: 60%;
  height: 600px;
  padding-left: 50px;
  background-color: red;
  background: linear-gradient(to left, #ffffff, #e29fcc);
}

#name {
  color: #9c3d7d;
  margin-top: 13rem;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1.2rem;
  background-color: white;
  width: 30%;
  border-radius: 25px;
  padding-top: 5px;
  padding-bottom: 5px;
}

#name img {
  width: 40px;
  height: 40px;
}

.left h2 {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 2rem;
  color: white !important;
}

.left p {
  font-size: 1.2rem;
}

.c-contact {
  color: white;
  margin-bottom: 40px;
}

#c-anchor {
  color: white;
  text-decoration: none;
}

#c-anchor:visited {
  color: white;
}

.left-button {
  width: 250px;
  justify-self: center;
  padding: 0.9rem;
  background-color: #e08027;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  cursor: pointer;
  margin-top: 5rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.left-button:hover {
  background-color: #c96c1f;
}

.right {
  width: 40%;
  height: 600px;
  background: linear-gradient(to right, #9c3d7d, #ff543e);
  display: flex;
  justify-content: center;
  /* align-items: center; */
}

.right img {
  max-width: 400px;
  height: 400px;
}

/* Reach out section */
.contact-section {
  margin: 5rem auto 0;
  max-width: 800px;
  width: 100%;
  background: #fff;
  text-align: center;
  padding: 2rem;
}

.contact-section h2 {
  color: #9c3d7d;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.contact-section p {
  color: #999;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: 1px solid #9c3d7d;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
}

.contact-form .full-width {
  grid-column: span 2;
}

.contact-form textarea {
  grid-column: span 2;
  resize: none;
}

.contact-form button {
  grid-column: span 2;
  width: 40%;
  justify-self: center;
  padding: 1rem;
  background-color: #e08027;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 8px rgba(224, 128, 39, 0.4);
}

.contact-form button:hover {
  background-color: #c96c1f;
}

/* Contact information */
.contact-info {
  padding: 40px;
  width: 100%;
  width: 100%;
  text-align: center;
}

h1 {
  color: #7b2c7b;
  margin-bottom: 30px;
  font-size: 2.2em;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.c-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid #7b2c7b;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.c-card:hover {
  transform: translateY(-10px);
}

.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.card-header h2 {
  font-size: 1.5rem;
  margin: 0;
  color: #ffffff;
}

.card-content p {
  margin: 8px 0;
  line-height: 1.5;
  font-size: 1.05em;
}

.card-header i {
  font-size: 1rem;
  margin-right: 15px;
  color: #ffffff;
  border-radius: 50%;
  padding: 0.7rem;
}

.office-card h2 {
  color: #7b2a8d;
}

.office-card i {
  background-color: #7b2c7b;
  color: #fff;
}

.phone-card {
  background-color: #7b2c7b;
  color: #ffffff;
}

.phone-card i {
  color: #7b2c7b;
  background-color: #fff;
}

.follow-card h2 {
  color: #7b2a8d;
}

.follow-card i {
  background-color: #7b2c7b;
  color: #fff;
}

.social-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  justify-content: start;
}

.social-item {
  display: flex;
  align-items: center;
  width: auto;
}

.social-icon {
  width: 32px;
  height: 32px;
  margin-right: 10px;
  object-fit: contain;
}

.twitter {
  width: 40px;
  height: 40px;
}

.social-item i {
  font-size: 1.3rem;
  margin-right: 10px;
  border-radius: 50%;
  padding: 8px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* i frame */
iframe {
  width: 100%;
  height: 500px;
  border: none;
}
