.contact-text a {
  color: black !important;
  text-decoration: underline;
}
.contact-text a:hover {
  color: black;
}

/* Container flex */
.contact-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
@media (min-width: 768px) {
  .contact-container {
    flex-direction: row;
  }
}

/* Left side */
.left-side {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (min-width: 768px) {
  .left-side {
    width: 50%;
  }
}
.left-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.circle-border {
  display: none;
}
@media (min-width: 768px) {
  .circle-border {
    display: block;
    position: absolute;
    bottom: -160px;
    left: -160px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
}

/* Right side */
.right-side {
  width: 100%;
  background: white;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
@media (min-width: 768px) {
  .right-side {
    width: 50%;
  }
}

/* Form */
form {
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px 112px;
}
@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}
label {
  display: block;
  font-weight: 600;
  font-size: 10px;
  margin-bottom: 4px;
}
label span {
  color: #dc2626;
}
input[type="text"],
input[type="email"],
input[type="tel"] {
  width: 100%;
  max-width: 300px;
  height: 40px;
  border: 1px solid #d1d5db;
  font-size: 14px;
  padding: 8px 12px;
  color: #11181c;
  outline: none;
  font-family: Arial, sans-serif;
  border-radius: 12px;
}

textarea {
  width: 100%;
  max-width: 300px;
  border: 3px solid #d1d5db;
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.3);
  font-size: 12px;
  padding: 8px 12px;
  outline: none;
  resize: none;
  height: 127px;
  border-radius: 12px;
}
input::placeholder,
textarea::placeholder {
  color: #9ca3af;
}
input:focus,
textarea:focus {
  border-color: #00345a;
  box-shadow: 0 0 0 2px #00345a;
  color: black;
}

.custom-phone-input {
  display: flex;
  align-items: center;
  border: 1px solid #d1d5db;
  background-color: white;
  max-width: 300px;
  border-radius: 12px;
}

.country-select img {
  width: 20px;
  height: 14px;
  margin-right: 4px;
  margin-left: 2px;
}

.country-select {
  display: flex;
  align-items: center;
  position: relative;
  margin-right: 8px;
}

.country-select select {
  border: none;
  background: transparent;
  font-size: 14px;
  color: #11181c;
  cursor: pointer;
}

.country-select select:focus {
  border: none;
  outline: none;
  box-shadow: none;
}

.custom-phone-input input[type="tel"] {
  border: none;
  outline: none;
  flex: 1;
  padding-left: 2px;
  color: black;
}

.custom-phone-input input[type="tel"]:focus {
  border: none;
  outline: none;
  box-shadow: none;
}

/* Submit button */

.button {
  margin-top: 30px;
}
button[type="submit"] {
  background-color: #001b36;
  color: white;
  font-weight: 700;
  font-size: 30px;
  border-radius: 11px;
  margin-top: 40px !important;
  margin-left: 50px !important;
  padding: 12px 35px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 16px;
  -webkit-border-radius: 11px;
  -moz-border-radius: 11px;
  -ms-border-radius: 11px;
  -o-border-radius: 11px;
}
button[type="submit"]:hover {
  background-color: #00345a;
}

.custom-line-divider {
  height: 2px;
  width: 270px;
  background-color: #000;
  margin: 0 auto;
}

/* Contact info section */
.contact-info {
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  font-size: 10px;
  color: black;
}
@media (min-width: 768px) {
  .contact-info {
    grid-template-columns: 1fr 1fr;
  }
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.contact-text p {
  margin: 0 0 4px 0;
  font-size: 14px;
}
.contact-text p:last-child {
  margin-bottom: 0;
}
.contact-text strong {
  font-weight: 700;
}
