/* ===== FORM SECTION ===== */
.form-section {
  background-color: #000000 !important;
  padding: 50px 20px !important;
  width: 100% !important;
}
.form-container {
  max-width: 1200px;
  margin: 0 auto;
}
.form-section label,
.form-section .forminator-label {
  color: #ffffff !important;
}

/* ===== FORM TITLES ===== */
.form-titles {
  margin-bottom: 20px !important;
  display: block !important;
}
.form-title-main {
  color: #ffffff !important;
  font-size: 2rem !important;
  font-weight: 700 !important;
  margin: 0 0 5px 0 !important;
  line-height: 1.3 !important;
}
.form-title-sub {
  color: #FFD700 !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  margin: 0 !important;
  display: block !important;
}

/* ===== WHATSAPP BUTTON IN FORM ===== */
.article-wa-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  background: #000 !important;
  color: #fff !important;
  border: 2px solid #25D366 !important;
  padding: 12px 24px !important;
  border-radius: 4px !important;
  text-decoration: none !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  margin: 20px !important;
}
.article-wa-btn:hover {
  background: #111 !important;
  color: #25D366 !important;
}
.article-wa-btn svg {
  flex-shrink: 0;
}

/* ===== ARTICLE WRAPPER ===== */
.article-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* ===== FEATURED IMAGE ===== */
.article-featured-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
}
.article-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== ARTICLE TITLE ===== */
.article-title {
  font-size: 2rem !important;
  font-weight: 700 !important;
  margin-bottom: 25px !important;
  color: #222222 !important;
  line-height: 1.3 !important;
  display: block !important;
}

/* ===== CONTENT ===== */
.article-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444444;
}

/* ===== SHARE BUTTONS ===== */
.article-share {
  display: flex !important;
  gap: 10px !important;
  margin: 20px 0 !important;
  flex-wrap: wrap !important;
}
.article-share a {
  padding: 8px 18px !important;
  border-radius: 4px !important;
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  display: inline-block !important;
}
.article-share a.share-fb { background: #1877F2 !important; }
.article-share a.share-tw { background: #1DA1F2 !important; }
.article-share a.share-wa { background: #25D366 !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .article-title {
    font-size: 1.5rem !important;
  }
  .article-wrapper {
    padding: 25px 15px;
  }
  .form-title-main {
    font-size: 1.5rem !important;
  }
}