/* =========================
   FEEDBACK PAGE LAYOUT
========================= */
.section-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px 20px;
  justify-content: space-between;
  background: #f8f9fc;
}

/* =========================
   Feedback Form (Left)
========================= */
.feedback-form {
  flex: 1 1 60%;
  background: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.feedback-form h2 {
  margin-bottom: 15px;
  font-size: 22px;
  color: #1a73e8;
  text-align: left;
}

.feedback-form form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feedback-form input,
.feedback-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

.feedback-form textarea {
  height: 130px;
  resize: none;
}

.feedback-form button {
  background: #1a73e8;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.feedback-form button:hover {
  background: #0f5dc4;
}

/* =========================
   Sidebar (Right)
========================= */
.about-hero {
  flex: 1 1 35%;
  max-width: 350px;
  padding: 20px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.about-logo {
  width: 100%;
  border-radius: 6px;
}

.about-hero a {
  display: block;
  padding: 6px;
  margin: 3px 0;
  color: white;
  background-color: #1a73e8;
  text-decoration: none;
  border-radius: 4px;
}

.about-hero h5 a {
  padding: 8px;
  text-align: center;
}

.about-hero p {
  font-size: 14px;
  color: #555;
  margin: 5px 0;
}

.about-hero p.phone::before { content: "📞 "; }
.about-hero p.email::before { content: "✉️ "; }
.about-hero p.location::before { content: "📍 "; }

/* =========================
   TABLET VIEW
========================= */
@media (max-width: 768px) {
  .section-hero {
    flex-direction: column;
    padding: 20px;
  }

  .feedback-form,
  .about-hero {
    max-width: 100%;
  }
}

/* =========================
   MOBILE VIEW
========================= */
@media (max-width: 480px) {
  .section-hero {
    padding: 15px;
  }

  .feedback-form {
    padding: 15px;
  }

  .feedback-form h2 {
    font-size: 20px;
  }

  .feedback-form input,
  .feedback-form textarea {
    font-size: 14px;
    padding: 10px;
  }

  .feedback-form button {
    font-size: 15px;
    padding: 10px;
  }

  .about-hero {
    padding: 15px;
  }

  .about-hero a {
    font-size: 14px;
  }
}


.reveal {
opacity: 0;
transform: translateY(40px);
transition: all 0.9s ease;
}
.reveal.visible {
opacity: 1;
transform: translateY(0);
}
.reveal-left {
opacity: 0;
transform: translateX(-40px);
transition: all 0.9s ease;
}
.reveal-left.visible {
opacity: 1;
transform: translateX(0);
}
.reveal-right {
opacity: 0;
transform: translateX(40px);
transition: all 0.8s ease;
}
.reveal-right.visible {
opacity: 1;
transform: translateX(0);
}