/* === Force Full Width for Contact Page === */
.page-id-431 .ast-container {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.page-id-431 #content,
.page-id-431 .site-content,
.page-id-431 .content-area,
.page-id-431 .entry-content {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}
.ppa-contact {
  width: 100%;
  margin: 0;
  padding: 80px 0;
  background: #fff8e5;
}

/* === Poetic Pilot Academy - Contact Us Page === */
.ppa-contact {
  background: linear-gradient(160deg, #fff9e6, #ffffff);
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

/* === Poetic Pilot Academy: Contact Us Page === */

.ppa-contact {
  background: #fff8e5;
  padding: 80px 0;
  width: 100%;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  flex-wrap: wrap;
}

/* === Left Section === */
.contact-info {
  flex: 1 1 50%;
}

.contact-info h1 {
  font-size: 2em;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.contact-info p {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* === Contact Details === */
.contact-details p {
  margin: 8px 0;
  font-size: 16px;
  color: #333;
}

.contact-icon {
  text-decoration: none;
  font-weight: 600;
}

.contact-icon.call {
  color: #000000;
}

.contact-icon.whatsapp {
  color: #25d366;
}

.contact-icon.email {
  color: #000000;
}

.map {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
}

/* === Right Section (Form) === */
.contact-form {
  flex: 1 1 45%;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-form h2 {
  font-size: 28px;
  margin-bottom: 25px;
  color: #111;
  font-weight: 700;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 16px;
}

/* === Submit Button === */
.btn-submit {
  display: inline-block;
  width: 100%;
  padding: 14px;
  background: #f4c542;;
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: #000;
}

/* === Responsive === */
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
  }
  .contact-info, .contact-form {
    flex: 1 1 100%;
  }
  .contact-info h1 {
    text-align: center;
  }
  .contact-info p {
    text-align: center;
  }
}

/* === Full-width background with inner margin === */
.page-id-431 .ast-container,
.page-id-431 #content,
.page-id-431 .site-content,
.page-id-431 .content-area,
.page-id-431 .entry-content {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  background: none !important;
}

/* Make background stretch edge to edge */
.page-id-431 .ppa-contact {
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  background: #fff8e5 !important;
  padding: 80px 0; /* vertical space */
}

/* Keep content centered with comfortable side padding */
.page-id-431 .contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px; /* <-- adjust this for how much margin you want */
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

/* Optional: tighten for mobile */
@media (max-width: 768px) {
  .page-id-431 .contact-container {
    padding: 0 20px;
  }
}
/* Lift the yellow contact section slightly upward to remove top white gap */
.ppa-contact {
  margin-top: -55px !important; /* adjust between -10px to -30px if needed */
}
/* === Remove underline + add custom hover === */
.contact-icon,
.contact-icon:link,
.contact-icon:visited {
  text-decoration: none !important;
  border: none !important;
  transition: color 0.3s ease, transform 0.2s ease;
}

/* WhatsApp hover = light green glow */
.contact-icon.whatsapp:hover {
  color: #1ebe57 !important;
  transform: scale(1.2);
}

/* Call hover = blue accent */
.contact-icon.call:hover {
  color: #007bff !important;
  transform: scale(1.05);
}

/* Email hover = warm red accent */
.contact-icon.email:hover {
  color: #e74c3c !important;
  transform: scale(1.05);
}

