/* ---------------- RESET ---------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", system-ui, sans-serif;
  background: linear-gradient(135deg, #667eea, #f4ae5f);
  min-height: 100vh;
  color: #111;
  background-image: url('../img/img.png'); /* Ensure the image is in the same folder as this HTML file */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
.bg-video {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -2;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  
  z-index: -1;
}

/* ---------------- PAGE LAYOUT ---------------- */
.page-content {
  padding-top: 100px;
  padding-bottom: 40px;
  display: flex;
  justify-content: center;
  margin: 40px auto;
}

/* ---------------- CONTACT CARD ---------------- */
.contact-wrapper {
  max-width: 1000px;
  width: 100%;
  margin: 0 16px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

/* ---------------- LEFT INFO ---------------- */
.contact-info {
  background: linear-gradient(160deg, #1f2933, #111827);
  color: white;
  padding: 40px;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.contact-info p {
  opacity: 0.9;
  line-height: 1.7;
}

.info-item {
  margin-top: 20px;
  font-size: 0.95rem;
}

/* ---------------- FORM ---------------- */
.contact-form {
  padding: 40px;
}

.contact-form h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: #374151;
}

input,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102,126,234,0.25);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

button {
  margin-top: 20px;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #667eea, #f4ae5f);
  color: white;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* ---------------- MOBILE ---------------- */
@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-info {
    text-align: center;
    padding: 30px 20px;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .page-content {
    padding-top: 120px;
  }
}