:root {
  --primary-blue: #263489;
  --accent-red: #ec1d25;
  --text-black: #000000;
  --bg-light: #f4f6f9;
}

/* =========================
   SECTION BACKGROUND
========================= */
.contact-modern {
  background: var(--bg-light);
  padding: 60px 0;
}

/* =========================
   MAIN CARD
========================= */
.contact-card {
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* =========================
   LEFT SIDE (BLUE PANEL)
========================= */
.contact-info {
  flex: 1;
  /*background: linear-gradient(135deg, #263489, #1c2670);*/
  color: #fff;
  padding: 40px;
  position: relative;
}

/* subtle pattern effect */
.contact-info::before {
  content: "";
  position: absolute;
  inset: 0;
  /*background: radial-gradient(circle at top right, rgba(255,255,255,0.08), transparent);*/
}

/* TITLE */
.contact-info h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 25px;
}

/* INFO ITEM */
.info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

/* ICON */
.info-item img {
  width: 18px;
  height: 18px;
  margin-top: 5px;
  background: rgba(255,255,255,0.2);
  padding: 6px;
  border-radius: 6px;
}

/* TEXT */
.info-item p {
  margin: 0;
  color: #e0e4ff;
  line-height: 1.6;
  font-size: 14px;
}

/* =========================
   RIGHT SIDE (FORM WHITE)
========================= */
.contact-form {
  flex: 1;
  background: #fff;
  padding: 40px;
}

/* TITLE */
.contact-form h2 {
  color: var(--primary-blue);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 25px;
}

/* =========================
   INPUTS
========================= */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  margin-bottom: 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
  background: #f9faff;
  transition: all 0.3s ease;
}

/* TEXTAREA */
.contact-form textarea {
  min-height: 100px;
  resize: none;
}

/* FOCUS */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary-blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(38,52,137,0.08);
  outline: none;
}

/* =========================
   BUTTON
========================= */
.contact-form button {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--primary-blue), #1c2670);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* HOVER */
.contact-form button:hover {
  background: linear-gradient(135deg, var(--accent-red), #c8141c);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(236,29,37,0.25);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

  .contact-card {
    flex-direction: column;
  }

  .contact-info,
  .contact-form {
    padding: 25px;
  }

  .contact-info h2,
  .contact-form h2 {
    font-size: 22px;
  }
}