.contact-hero {
  position: relative;
  height: 100vh;
  width: 100%;
  background-image: url("https://res.cloudinary.com/dx1jbyib2/image/upload/v1776167777/AZD03813_x43eol.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);

}

.contact-hero h1::after {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  background: white;
  margin: 5px auto 0;
}


.contact-hero h1 {
  position: relative;
  color: white;
  font-size: 5rem;
  letter-spacing: 2px;
}

.contact-wrapper {
  background: url("https://res.cloudinary.com/dx1jbyib2/image/upload/v1776169353/IBA00611_utmrtu.jpg") center/cover;
  padding: 50px 8%;
  position: relative;
}

.contact-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .35);
}

.info-bar {
  position: relative;
  background: white;
  padding: 80px 8%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  width: 100%;
}

@media (max-width: 991px) {
  .info-bar {
    grid-template-columns: 1fr;
    padding: 60px 5%;
    gap: 30px;
  }
}

.info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.info-item i {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #b18a55;
  color: white;
  padding: 16px;
  border-radius: 50%;
}

.info-item div {
  text-align: center;
}

.info-item h4 {
  margin: 0 0 10px 0;
  color: #333;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-item a,
.info-item span {
  display: block;
  color: #b18a55;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-item a:hover {
  color: #333;
}

.info-item p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.1px;
  padding-top: 10px;
  max-width: 250px;
  margin: 0 auto;
}

.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 420px;
  padding: 20px;
  gap: 60px;
}

.left-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.left-content h1 {
  font-size: 55px;
  margin: 0;
  color: white;
}

.left-content h3 {
  color: white;
  font-size: 25px;
  padding-bottom: 10px;
}

.line {
  width: 100%;
  height: 1px;
  background-color: white;
  margin-bottom: 30px;
}

.left-content p {
  color: white;
}

.form-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.row {
  display: flex;
  gap: 15px;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 6px;
  outline: none;
}

textarea {
  height: 100px;
}

.phone-field {
  display: flex;
  align-items: center;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  overflow: hidden;
  background: #fafafa;
}

.country-code {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 10px;
  border-right: 1px solid #ddd;
  font-size: 14px;
  cursor: pointer;
}

.country-code img {
  width: 20px;
  height: auto;
}

.country-code span {
  font-weight: 500;
}

.country-code i {
  font-size: 10px;
  opacity: .6;
}

.phone-field input {
  border: none;
  outline: none;
  padding: 12px;
  flex: 1;
  background: transparent;
  font-size: 14px;
}


button {
  width: 100%;
  padding: 14px;
  background: #444;
  color: white;
  border: none;
  border-radius: 6px;
  margin-top: 10px;
  cursor: pointer;
}

button:hover {
  background-color: #b18a55;
}

button:active {
  scale: 1.05;
}

/* Form Validation Styles */
.form-error {
  border: 1.5px solid #ff4d4d !important;
  background: #fffafa !important;
}

.form-error::placeholder {
  color: #ff9999;
}