Here's the **cleaned and fixed CSS** ready to paste:

```css
/* Hide homepage title */
.page-id-34 .entry-title {
    display: none !important;
}

/* ============================================
   ENGAGING CONTACT PAGE - VISUAL ENHANCEMENTS
   Using Your Existing Brand Colors
   ============================================ */

/* Add breathing room and visual hierarchy */
body .contact-page-container {
  line-height: 1.8;
  letter-spacing: 0.3px;
}

/* Hero Section - More Dynamic */
.contact-hero-image {
  width: 100%;
  padding: 100px 20px;
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 50%, #2980b9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Animated gradient background */
.contact-hero-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { left: -100%; }
  100% { left: 100%; }
}

.contact-hero h1 {
  font-size: 52px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #ffffff !important;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.contact-subtitle {
  font-size: 24px;
  margin: 0;
  font-weight: 400;
  color: #ffffff !important;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

/* Contact Cards - More Visual Impact */
.contact-quick-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: -60px auto 60px;
  max-width: 1200px;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

.contact-card {
  background: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Colored top accent bars */
.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  transition: height 0.3s ease;
}

.contact-card.emergency::before {
  background: linear-gradient(90deg, #e74c3c, #c0392b);
}

.contact-card.general::before {
  background: linear-gradient(90deg, #3498db, #2980b9);
}

.contact-card.visit::before {
  background: linear-gradient(90deg, #2ecc71, #27ae60);
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.contact-card:hover::before {
  height: 8px;
}

/* Icon-style emojis - bigger and bolder */
.contact-card h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #2c3e50;
  font-weight: 700;
}

.contact-card p {
  color: #7f8c8d;
  margin-bottom: 25px;
  line-height: 1.8;
  font-size: 16px;
}

/* Buttons - More engaging with gradients */
.btn-emergency,
.btn-primary,
.btn-secondary,
.btn-whatsapp {
  display: inline-block;
  padding: 16px 32px;
  margin: 10px 5px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 280px;
  text-align: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-emergency {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: white;
}

.btn-emergency:hover {
  background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.btn-primary {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2980b9 0%, #1f5f8b 100%);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #1da851 100%);
  color: white;
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #1da851 0%, #128C7E 100%);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Trust Bar - More Visual */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
  padding: 40px 20px;
  margin: 80px 0;
  border-left: none;
  border-radius: 8px;
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.1);
}

.trust-item {
  font-size: 17px;
  font-weight: 700;
  color: #2c3e50;
  display: flex;
  align-items: center;
  padding: 15px 25px;
  background: white;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.trust-item:before {
  content: "✔";
  color: #2ecc71;
  font-size: 24px;
  margin-right: 12px;
  font-weight: 700;
}

/* Form Section - Less Boxy, More Inviting */
.contact-form-section {
  max-width: 800px;
  margin: 80px auto;
  padding: 60px 50px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: none;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  border-radius: 16px;
}

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 15px;
  color: #2c3e50;
  font-size: 36px;
  font-weight: 700;
  position: relative;
  padding-bottom: 20px;
}

/* Underline accent */
.contact-form-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #3498db, #2ecc71);
  border-radius: 2px;
}

.contact-form-section > p {
  text-align: center;
  color: #7f8c8d;
  margin-bottom: 40px;
  line-height: 1.8;
  font-size: 17px;
}

/* Form inputs - more modern */
.contact-form-wrapper input[type="text"],
.contact-form-wrapper input[type="email"],
.contact-form-wrapper textarea {
  width: 100%;
  padding: 16px 20px;
  margin-top: 10px;
  border: 2px solid #ecf0f1;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
  box-sizing: border-box;
  background: white;
}

.contact-form-wrapper input[type="text"]:focus,
.contact-form-wrapper input[type="email"]:focus,
.contact-form-wrapper textarea:focus {
  border-color: #3498db;
  outline: none;
  box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
  background: #f8fbff;
}

.contact-form-wrapper input[type="submit"] {
  background: linear-gradient(135deg, #3498db 0%, #2ecc71 100%);
  color: white;
  padding: 18px 50px;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.contact-form-wrapper input[type="submit"]:hover {
  background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

/* Process Section - More Visual Steps */
.process-section {
  max-width: 1200px;
  margin: 100px auto;
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
  border-radius: 16px;
}

.process-section h2 {
  margin-bottom: 60px;
  font-size: 40px;
  color: #2c3e50;
  font-weight: 700;
  position: relative;
  padding-bottom: 20px;
}

.process-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #3498db, #2ecc71);
  border-radius: 2px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 50px;
}

.step {
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3498db 0%, #2ecc71 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 700;
  margin: 0 auto 25px;
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.step h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #2c3e50;
  font-weight: 700;
}

.step p {
  color: #7f8c8d;
  line-height: 1.8;
  font-size: 16px;
}

/* FAQ Section - More Inviting */
.contact-faq {
  max-width: 900px;
  margin: 80px auto;
  padding: 50px;
  background: linear-gradient(135deg, #3498db 0%, #2ecc71 100%);
  border-left: none;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
}

.contact-faq h3 {
  margin-bottom: 15px;
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
}

.contact-faq p {
  color: #ffffff;
  line-height: 1.8;
  font-size: 18px;
}

.contact-faq a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.contact-faq a:hover {
  text-decoration: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .contact-hero-image {
    padding: 70px 20px;
  }
  
  .contact-hero h1 {
    font-size: 32px;
  }
  
  .contact-subtitle {
    font-size: 18px;
  }
  
  .contact-quick-actions {
    grid-template-columns: 1fr;
    margin-top: -40px;
  }
  
  .contact-card {
    padding: 30px 20px;
  }
  
  .trust-bar {
    flex-direction: column;
    gap: 15px;
  }
  
  .trust-item {
    width: 100%;
    justify-content: center;
  }
  
  .contact-form-section {
    padding: 40px 25px;
    margin: 50px 15px;
  }
  
  .contact-form-section h2 {
    font-size: 28px;
  }
  
  .process-section {
    padding: 50px 20px;
    margin