/* =======================================
   COMPLAINT PAGE SPECIFIC STYLES
   ======================================= */

.complaint-hero {
  background: linear-gradient(135deg, #061020 0%, #0a1931 100%);
  padding: 80px 5%;
  text-align: center;
  color: #ffffff;
  border-bottom: 2px solid rgba(212, 175, 55, 0.15);
  position: relative;
  overflow: hidden;
}

.complaint-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.complaint-hero h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 12px;
}

.complaint-hero h1 span {
  color: #d4af37;
}

.complaint-hero p {
  font-size: 16.5px;
  color: #c4d1df;
  line-height: 1.6;
}

/* Form Iframe Section */
.iframe-section {
  padding: 60px 5%;
  max-width: 900px;
  margin: 0 auto;
}

.iframe-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 10px;
  position: relative;
  overflow: hidden;
  min-height: 800px;
}

.iframe-card iframe {
  border: none;
  width: 100%;
  height: 800px;
  display: block;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
