/* ✅ feedback.css (PROPER + matches your existing style.css/contact.css look)
   Paste this FULL and remove old feedback.css
*/

:root{
  --ph-blue:#0a4a7a;
  --ph-blue2:#0d6db7;
  --ph-text:#222;
  --ph-muted:#667085;
  --ph-border:rgba(0,0,0,.08);
  --ph-card:#ffffff;
  --ph-bg:#f6f9fc;
  --ph-shadow:0 12px 30px rgba(10,74,122,.10);
}

.feedback-hero{
  background: linear-gradient(135deg, rgba(10,74,122,.95) 0%, rgba(13,109,183,.92) 100%);
  padding: 70px 0;
  color: #fff;
  text-align: center;
}

.feedback-hero h1{
  font-size: 42px;
  line-height: 1.15;
  margin-bottom: 12px;
  color: #fff;
  font-weight: 800;
}

.feedback-hero p{
  max-width: 850px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
  opacity: .95;
}

/* section */
.feedback-form-section{
  padding: 70px 0;
  background: var(--ph-bg);
}

/* layout */
.feedback-wrap{
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 26px;
  align-items: start;
}

/* LEFT CARD */
.feedback-info-card{
  background: var(--ph-card);
  border-radius: 16px;
  padding: 26px;
  box-shadow: var(--ph-shadow);
  border: 1px solid var(--ph-border);
  position: sticky;
  top: 120px; /* sticky header offset */
}

.feedback-info-card .info-icon{
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13,109,183,.12);
  color: var(--ph-blue2);
  font-size: 22px;
  margin-bottom: 14px;
}

.feedback-info-card h3{
  margin: 0 0 10px 0;
  color: var(--ph-blue);
  font-size: 22px;
  font-weight: 800;
}

.feedback-info-card p{
  margin: 0 0 16px 0;
  color: #475467;
  line-height: 1.7;
  font-size: 14.5px;
}

.info-points{
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  border-top: 1px solid rgba(0,0,0,.06);
}

.info-points li{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
  color: #334155;
  font-weight: 700;
  font-size: 14px;
}

.info-points li:last-child{
  border-bottom: none;
}

.info-points i{
  color: var(--ph-blue2);
  width: 18px;
  text-align: center;
}

.info-note{
  background: rgba(10,74,122,.06);
  border: 1px solid rgba(10,74,122,.12);
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--ph-blue);
  font-weight: 700;
  line-height: 1.5;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
}

.info-note i{
  color: var(--ph-blue2);
  margin-top: 2px;
}

/* RIGHT FORM CARD */
/* if your contact.css already has .form-container styles, this will enhance it */
.feedback-container{
  background: var(--ph-card);
  border-radius: 16px;
  box-shadow: var(--ph-shadow);
  border: 1px solid var(--ph-border);
  overflow: hidden;
}

.feedback-container .form-header{
  padding: 22px 24px;
  background: linear-gradient(135deg, rgba(10,74,122,.06), rgba(13,109,183,.05));
    border-top: 4px solid transparent;
    border-image: linear-gradient(90deg, #1e5aa8 0%, #2f76d6 55%, #e63946 100%) 1;
}

.feedback-container .form-header h3{
  margin: 0;
  font-size: 22px;
  color: var(--ph-blue);
  font-weight: 900;
}

.feedback-container .form-sub{
  margin: 6px 0 0 0;
  color: #667085;
  font-size: 14px;
}

.feedback-container .form-body{
  padding: 22px 24px 26px;
}

/* make form proper even if your global form styles are not applied */
#feedbackForm{
  width: 100%;
}

#feedbackForm .form-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 14px;
}

#feedbackForm .form-group{
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

#feedbackForm label{
  font-size: 13px;
  font-weight: 800;
  color: #344054;
}

#feedbackForm input,
#feedbackForm textarea{
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(15,23,42,.14);
  border-radius: 12px;
  background: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

#feedbackForm input:focus,
#feedbackForm textarea:focus{
  border-color: rgba(13,109,183,.55);
  box-shadow: 0 0 0 4px rgba(13,109,183,.12);
}

#feedbackForm textarea{
  min-height: 170px;
  resize: vertical;
}

/* Actions row */
.feedback-actions{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

/* button (override ugly default) */
.feedback-btn,
#feedbackForm .submit-btn{
  border: none;
  cursor: pointer;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 900;
  letter-spacing: .2px;
  background: linear-gradient(135deg, var(--ph-blue) 0%, var(--ph-blue2) 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform .15s ease, box-shadow .2s ease, filter .2s ease;
  box-shadow: 0 12px 18px rgba(10,74,122,.18);
}

.feedback-btn:hover,
#feedbackForm .submit-btn:hover{
  filter: brightness(1.03);
  transform: translateY(-1px);
}

.feedback-btn:active,
#feedbackForm .submit-btn:active{
  transform: translateY(0px);
}

.confidential-pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(13,109,183,.10);
  border: 1px solid rgba(13,109,183,.22);
  color: var(--ph-blue);
  font-weight: 900;
  font-size: 13px;
}

.confidential-pill i{
  color: var(--ph-blue2);
}

.tiny-note{
  margin-top: 12px;
  font-size: 12.5px;
  color: #667085;
}

/* CTA section spacing fix (if it looks huge/ugly) */
.about-cta{
  margin-top: 30px;
}

/* Responsive */
@media (max-width: 1100px){
  .feedback-wrap{
    grid-template-columns: 380px 1fr;
  }
}

@media (max-width: 992px){
  .feedback-wrap{
    grid-template-columns: 1fr;
  }
  .feedback-info-card{
    position: static;
    top: auto;
  }
  #feedbackForm .form-row{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px){
  .feedback-hero{
    padding: 55px 0;
  }
  .feedback-hero h1{
    font-size: 30px;
  }
  .feedback-container .form-body,
  .feedback-container .form-header{
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ==============================
   ✅ FINAL CTA FIX (Feedback page + others)
   ============================== */

.about-cta{
  margin-top: 80px;              /* form se gap */
  margin-bottom: 0;
  padding: 70px 20px;
  background: linear-gradient(
    135deg,
    #0a4a7a 0%,
    #0d6db7 100%
  );
  position: relative;
  overflow: hidden;
}

/* subtle texture / depth */
.about-cta::before{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(255,255,255,.12),
    transparent 60%
  );
  pointer-events: none;
}

.about-cta .cta-content{
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* heading */
.about-cta h2{
 font-size: 2.5rem;
  margin-bottom: 20px;
  color: white;
}


/* slogan */
.about-cta .slogan{
font-size: 1.8rem;
  color: #e74c3c;
  font-style: italic;
  font-weight: 600;
}


.cta-content p {
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* buttons */
.about-cta .cta-buttons{
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.about-cta .cta-btn{
  padding: 14px 34px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .3px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
}

/* primary */
.about-cta .cta-btn.primary{
  background: #ffffff;
  color: #0a4a7a;
  box-shadow: 0 10px 25px rgba(0,0,0,.18);
}

.about-cta .cta-btn.primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0,0,0,.25);
}

/* secondary */
.about-cta .cta-btn.secondary{
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,.7);
}

.about-cta .cta-btn.secondary:hover{
  background: rgba(255,255,255,.15);
  transform: translateY(-2px);
}

/* responsive */
@media (max-width: 768px){
  .about-cta{
    padding: 55px 16px;
    margin-top: 60px;
  }

  .about-cta h2{
    font-size: 26px;
  }

  .about-cta .slogan{
    font-size: 16px;
  }
}
