/* ====================== CTA SECTION ====================== */
.mid-section {
  position: relative;
  padding: 80px 20px;
  color: white;
  text-align: center;
  overflow: hidden;
}




.mid-section-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #084B3C 0%, #0B5E4B 100%);
  url('your-background-image.jpg') center/cover no-repeat;
  z-index: 1;
}

.mid-section-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.mid-section-headline {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
}

.mid-section-text {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 40px;
  opacity: 0.95;
}

.mid-section-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.mid-section-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 32px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 280px;           /* Good minimum width for mobile */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* WhatsApp Button */
.whatsapp-btn {
  background-color: #25D366;
  color: white;
}

.whatsapp-btn:hover {
  background-color: #20ba5a;
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.4);
}

/* Form Button */
.form-btn {
  background-color: #ffffff;
  color: #333;
}

.form-btn:hover {
  background-color: #f0f0f0;
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.btn-icon {
  font-weight: 700;
  font-size: 1.15rem;
}

/* ====================== RESPONSIVE ====================== */
@media (max-width: 768px) {
  .mid-section {
    padding: 60px 15px;
  }
 
  .mid-section-headline {
    font-size: 2.2rem;
  }
 
  .mid-section-text {
    font-size: 1.15rem;
  }
 
  .mid-section-buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
 
  .mid-section-btn {
    min-width: 100%;
    max-width: 380px;
    padding: 16px 24px;
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .mid-section-headline {
    font-size: 1.95rem;
  }
 
  .mid-section-text {
    font-size: 1.1rem;
  }
}