/* =====================================
   SPARK CONTACT v2 (INSPIRED LAYOUT)
===================================== */

.spark2-contact-section {
  background: #2b2b2b;
  padding: 100px 6%;
}

.spark2-contact-container {
  max-width: 1300px;
  margin: 0 auto;
}

/* HEADER */
.spark2-contact-header {
  max-width: 620px;
  margin-bottom: 60px;
}

.spark2-contact-label {
  color: #ffd700;
  font-size: 0.85rem;
  font-weight: 600;
}

.spark2-contact-header h2 {
  color: #fff;
  font-size: 2.6rem;
  margin: 10px 0;
}

.spark2-contact-header p {
  color: #cfcfcf;
  line-height: 1.7;
}

/* CONTENT */
.spark2-contact-content {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 64px;
  }
  

/* FORM */
.spark2-contact-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.35);
}

.spark2-contact-form h4 {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.spark2-form-group {
  margin-bottom: 18px;
}

.spark2-form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.spark2-form-group input,
.spark2-form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #fafafa;
}

.spark2-form-group input:focus,
.spark2-form-group textarea:focus {
  border-color: #ffd700;
  box-shadow: 0 0 0 2px rgba(255,215,0,0.25);
  outline: none;
}

/* BUTTON */
.spark2-contact-submit {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  background: #ffd700;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

/* RIGHT SIDE */
.spark2-contact-side {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.spark2-contact-box {
  background: #242424;
  border-radius: 18px;
  padding: 30px;
  color: #fff;
}

.spark2-contact-box h4 {
  margin-bottom: 16px;
}

.spark2-contact-box ul {
  list-style: none;
  padding: 0;
  font-size: 0.9rem;
  color: #ddd;
}

.spark2-contact-box ul li {
  margin-bottom: 10px;
}

/* MAP */
.spark2-map-placeholder {
  background: #333;
  height: 160px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  margin: 12px 0;
}

.spark2-map-btn {
  color: #ffd700;
  font-size: 0.9rem;
  text-decoration: none;
}

.spark2-map-wrapper iframe {
    width: 100%;
    height: 180px;
    border: none;
    border-radius: 12px;
  }
  

/* RESPONSIVE */
@media (max-width: 900px) {
  .spark2-contact-content {
    grid-template-columns: 1fr;
  }
}
