:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-a4dc3be *//* WRAPPER */
.contact-wrapper {
  width: 100%;
  padding: 60px 0;
  background: #F8FAFC;
}

/* MAIN GRID */
.contact-container {
  width: 90%;
  max-width: 1250px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* LEFT IMAGE */
.contact-image img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* TEXT AREA */
.contact-title {
  font-size: 42px;
  font-weight: 800;
  color: #0F2454;
  margin-bottom: 10px;
}

.contact-subtitle {
  font-size: 16px;
  color: #475569;
  margin-bottom: 30px;
}

/* FORM */
.contact-form {
  width: 100%;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  border-radius: 10px;
  font-size: 15px;
  transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0A1D5A;
  box-shadow: 0 0 0 2px rgba(10,29,90,0.1);
}

.contact-form textarea {
  height: 150px;
  resize: none;
}

/* SUBMIT BUTTON */
.contact-btn {
  width: 100%;
  padding: 15px;
  margin-top: 10px;
  background: #0A1D5A;
  color: white;
  border: none;
  font-size: 16px;
  border-radius: 10px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-btn:hover {
  background: #D4AF37;
  color: #0A1D5A;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212,175,55,0.25);
}

/* CONTACT CARDS */
.contact-cards {
  display: flex;
  gap: 20px;
  margin: 30px 0;
}

.card {
  background: #FFFFFF;
  padding: 18px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  width: 33%;
  border-left: 4px solid #0A1D5A;
}

.card h4 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #0F2454;
}

.card p {
  font-size: 15px;
  color: #475569;
}

.card span {
  font-size: 13px;
  color: #94A3B8;
}

/* SOCIAL ROW */
.social-row {
  margin-top: 20px;
  display: flex;
  gap: 14px;
}

.social-row a {
  color: #0A1D5A;
  font-size: 20px;
  transition: 0.3s ease;
}

.social-row a:hover {
  color: #D4AF37;
}

/* RESPONSIVE */
@media (max-width: 940px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
  .contact-image img {
    height: 400px;
  }
  .contact-cards {
    flex-direction: column;
  }
  .card {
    width: 100%;
  }
}/* End custom CSS */