/* ===================================================
   Contact Us – Premium (No Banner, Strong Presence)
   Matches Home / About / Services
   =================================================== */

/* ================= GLOBAL ================= */
body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", system-ui, sans-serif;
  color: #ffffff;

  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(255,215,0,0.14), transparent 60%),
    radial-gradient(800px 400px at 90% 10%, rgba(255,255,255,0.10), transparent 60%),
    linear-gradient(180deg, #1e3cff 0%, #1428b8 100%);
}

/* ================= PAGE TITLE ================= */
.contact-page-title {
  text-align: center;
  margin: 90px auto 60px;
  padding: 0 15px;
}

.contact-page-title h1 {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  color: #FFD700;
  margin-bottom: 14px;

  text-shadow:
    0 0 18px rgba(255,215,0,0.6),
    0 0 38px rgba(255,215,0,0.35);
}

.contact-page-title p {
  font-size: 18px;
  color: #f3f4ff;
  max-width: 760px;
  margin: 0 auto;
  opacity: 0.95;
}

/* ================= MAIN LAYOUT ================= */
.contact-section {
  padding: 20px 20px 100px;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
  align-items: stretch;
}

/* ================= LEFT INFO CARD ================= */
.contact-info {
  flex: 1;
  min-width: 320px;
  max-width: 520px;

  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);

  border-radius: 22px;
  padding: 42px;

  border: 1px solid rgba(255,215,0,0.45);

  box-shadow:
    0 22px 55px rgba(0,0,0,0.45),
    0 0 45px rgba(255,215,0,0.25);

  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contact-info:hover {
  transform: translateY(-6px);
  box-shadow:
    0 28px 70px rgba(0,0,0,0.55),
    0 0 60px rgba(255,215,0,0.45);
}

.contact-info h2 {
  font-size: 26px;
  color: #FFD700;
  margin-bottom: 22px;
  text-shadow: 0 0 14px rgba(255,215,0,0.5);
}

.contact-info p {
  font-size: 18px;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 14px;
  word-break: break-word;
  overflow-wrap: anywhere;
  max-width: 100%;
  
}

/* ================= FORM CARD ================= */
.contact-form-box {
  flex: 1;
  min-width: 320px;
  max-width: 520px;

  background: rgba(255,255,255,0.97);
  padding: 42px;
  border-radius: 24px;

  border: 2px solid rgba(255,215,0,0.8);

  box-shadow:
    0 26px 65px rgba(0,0,0,0.45),
    0 0 50px rgba(255,215,0,0.35);

  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contact-form-box:hover {
  transform: translateY(-6px);
  box-shadow:
    0 32px 80px rgba(0,0,0,0.55),
    0 0 70px rgba(255,215,0,0.55);
}

.contact-form-box h3 {
  text-align: center;
  font-size: 26px;
  color: #1e3cff;
  margin-bottom: 26px;
  font-weight: 700;
}

/* ================= INPUTS ================= */
.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
  outline: none;
  border-color: #FFD700;
  box-shadow:
    0 0 0 2px rgba(255,215,0,0.25),
    0 0 18px rgba(255,215,0,0.45);
}

/* ================= BUTTON ================= */
.contact-form-box button {
  width: 100%;
  padding: 14px;

  background: linear-gradient(135deg, #FFD700, #e6c200);
  color: #1e3cff;

  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.5px;

  border-radius: 30px;
  border: none;
  cursor: pointer;

  box-shadow:
    0 10px 28px rgba(255,215,0,0.45),
    0 0 30px rgba(255,215,0,0.35);

  transition: all 0.35s ease;
}

.contact-form-box button:hover {
  transform: translateY(-3px);
  box-shadow:
    0 16px 40px rgba(255,215,0,0.6),
    0 0 50px rgba(255,215,0,0.6);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .contact-page-title {
    margin-top: 70px;
  }

  .contact-info,
  .contact-form-box {
    padding: 32px;
  }
}
